added beneficiary routes, controllers and services

This commit is contained in:
2025-07-30 12:26:04 +05:30
parent d4d741b8cc
commit b88e00f758
3 changed files with 34 additions and 4 deletions

View File

@@ -4,5 +4,7 @@ const beneficiaryController = require('../controllers/beneficiary.controller');
const router = express.Router();
router.get('/validate/within-bank', beneficiaryController.validateWithinBank);
router.get('/validate/outside-bank', beneficiaryController.validateOutsideBank);
router.post('/validate/npci-response', beneficiaryController.npciResponse);
module.exports = router;