2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-09 13:10:44 +00:00
RTL/routes/getInfo.js

8 lines
195 B
JavaScript
Raw Normal View History

2018-09-15 01:31:01 +00:00
const infoController = require("../controllers/getInfo");
const express = require("express");
const router = express.Router();
router.get("/", infoController.getInfo);
module.exports = router;