(fastify: FastifyInstance)
| 13 | import { webhookRoutes } from "./controllers/webhooks"; |
| 14 | |
| 15 | export function registerRoutes(fastify: FastifyInstance) { |
| 16 | authRoutes(fastify); |
| 17 | emailQueueRoutes(fastify); |
| 18 | dataRoutes(fastify); |
| 19 | ticketRoutes(fastify); |
| 20 | userRoutes(fastify); |
| 21 | notebookRoutes(fastify); |
| 22 | clientRoutes(fastify); |
| 23 | webhookRoutes(fastify); |
| 24 | configRoutes(fastify); |
| 25 | timeTrackingRoutes(fastify); |
| 26 | objectStoreRoutes(fastify); |
| 27 | roleRoutes(fastify); |
| 28 | } |
no test coverage detected