From a2e0a65b2599267efe94d665d6305f59b225bbd5 Mon Sep 17 00:00:00 2001 From: Biswa Kalyan Bhuyan Date: Tue, 29 Apr 2025 10:47:43 +0530 Subject: feat: added initlaized the frontend and backend --- backend/src/routes/index.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 backend/src/routes/index.js (limited to 'backend/src/routes/index.js') diff --git a/backend/src/routes/index.js b/backend/src/routes/index.js new file mode 100644 index 0000000..4ea5c46 --- /dev/null +++ b/backend/src/routes/index.js @@ -0,0 +1,20 @@ +const express = require('express'); +const authRoutes = require('./auth.routes'); +// Import other routes as they are created +// const menuRoutes = require('./menu.routes'); +// const reservationRoutes = require('./reservations.routes'); +// const orderRoutes = require('./orders.routes'); +// const feedbackRoutes = require('./feedback.routes'); + +const router = express.Router(); + +// Auth routes +router.use('/auth', authRoutes); + +// Other routes to be added +// router.use('/menu', menuRoutes); +// router.use('/reservations', reservationRoutes); +// router.use('/orders', orderRoutes); +// router.use('/feedback', feedbackRoutes); + +module.exports = router; \ No newline at end of file -- cgit v1.2.3-59-g8ed1b