OTP binding

This commit is contained in:
2025-08-25 11:45:23 +05:30
parent 4ff437319e
commit 52225828d0
8 changed files with 152 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ const beneficiaryRoute = require('./beneficiary.route');
const neftRoute = require('./neft.route');
const rtgsRoute = require('./rtgs.route');
const { npciResponse } = require('../controllers/npci.controller');
const otp = require('./otp.route');
const router = express.Router();
@@ -19,5 +20,6 @@ router.use('/payment/neft', authenticate, neftRoute);
router.use('/payment/rtgs', authenticate, rtgsRoute);
router.use('/beneficiary', authenticate, beneficiaryRoute);
router.use('/npci/beneficiary-response', npciResponse);
router.use('/otp', otp);
module.exports = router;