From b0c9cb8038fc738f54b7e389fd1932517973f268 Mon Sep 17 00:00:00 2001 From: asif Date: Fri, 14 Nov 2025 13:02:58 +0530 Subject: [PATCH] fix: 404 error in branch route --- src/routes/branch.route.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/branch.route.js b/src/routes/branch.route.js index 53c7127..548a886 100644 --- a/src/routes/branch.route.js +++ b/src/routes/branch.route.js @@ -14,5 +14,6 @@ const branchRoute = async (req, res) => { res.status(500).json({ error: 'INTERNAL SERVER ERROR' }); } }; +router.get('/', branchRoute); module.exports = router;