diff --git a/backend/src/routes/index.ts b/backend/src/routes/index.ts index d94ec76..dfc403c 100644 --- a/backend/src/routes/index.ts +++ b/backend/src/routes/index.ts @@ -9,6 +9,7 @@ import inventoryRoutes from '../modules/inventory/inventory.routes'; import projectsRoutes from '../modules/projects/projects.routes'; import marketingRoutes from '../modules/marketing/marketing.routes'; import tendersRoutes from '../modules/tenders/tenders.routes'; +import notificationsRoutes from '../modules/notifications/notifications.routes'; const router = Router(); @@ -23,6 +24,7 @@ router.use('/inventory', inventoryRoutes); router.use('/projects', projectsRoutes); router.use('/marketing', marketingRoutes); router.use('/tenders', tendersRoutes); +router.use('/notifications', notificationsRoutes); // API info router.get('/', (req, res) => {