diff --git a/src/routes.ts b/src/routes.ts index 268f27d..558cd33 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -19,7 +19,6 @@ import { alertRoutes } from "./alert/alert.route"; import { analyticsRoutes } from "./analytics/analytics.routes"; import { eventRoutes } from "./events/events.route"; import { userConfigRoutes } from "./userConfig/userConfig.route"; -import { validateRoutes } from "./fileValidation/validate.route"; export default async function routes(fastify: FastifyInstance) { fastify.addHook("preHandler", authHandler); @@ -40,6 +39,5 @@ export default async function routes(fastify: FastifyInstance) { fastify.register(paymentRoutes, { prefix: "/payments" }); fastify.register(alertRoutes, { prefix: "/alerts" }); fastify.register(analyticsRoutes, { prefix: "/analytics" }); - fastify.register(validateRoutes, { prefix: "/validate" }); fastify.register(eventRoutes); }