2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/routes/c-lightning/fees.js

9 lines
261 B
JavaScript
Raw Normal View History

const FeesController = require("../../controllers/c-lightning/fees");
2018-09-15 01:31:01 +00:00
const express = require("express");
const router = express.Router();
const authCheck = require("../authCheck");
2018-09-15 01:31:01 +00:00
2019-01-01 16:26:51 +00:00
router.get("/", authCheck, FeesController.getFees);
2018-09-15 01:31:01 +00:00
module.exports = router;