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;