mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-18 20:53:52 +01:00
8 lines
261 B
JavaScript
8 lines
261 B
JavaScript
const PaymentsController = require("../controllers/payments");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("./authCheck");
|
|
|
|
router.get("/", authCheck, PaymentsController.getPayments);
|
|
|
|
module.exports = router;
|