fix: 404 error in branch route

This commit is contained in:
2025-11-14 13:02:58 +05:30
parent a8a576f5c1
commit b0c9cb8038

View File

@@ -14,5 +14,6 @@ const branchRoute = async (req, res) => {
res.status(500).json({ error: 'INTERNAL SERVER ERROR' });
}
};
router.get('/', branchRoute);
module.exports = router;