added beneficiary routes
This commit is contained in:
8
src/routes/beneficiary.route.js
Normal file
8
src/routes/beneficiary.route.js
Normal file
@@ -0,0 +1,8 @@
|
||||
const express = require('express');
|
||||
const beneficiaryController = require('../controllers/beneficiary.controller');
|
||||
|
||||
const router = express.Router();
|
||||
|
||||
router.get('/validate/within-bank', beneficiaryController.validateWithinBank);
|
||||
|
||||
module.exports = router;
|
||||
Reference in New Issue
Block a user