billingRecordRoutes.js
unknown
plain_text
a year ago
323 B
4
Indexable
const express = require('express'); const router = express.Router(); const billingRecordController = require('../controllers/billingRecordController'); router.get('/records' ,billingRecordController.getRecordsByEmail); router.get('/records/:id' , billingRecordController.getRecordsById); module.exports = router;
Editor is loading...
Leave a Comment