2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
RTL/routes/payments.js

8 lines
208 B
JavaScript
Raw Normal View History

const PaymentsController = require("../controllers/payments");
const express = require("express");
const router = express.Router();
router.get("/", PaymentsController.getPayments);
module.exports = router;