2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-17 15:29:30 +00:00
RTL/routes/c-lightning/getInfo.js

9 lines
271 B
JavaScript
Raw Normal View History

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