mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
const infoController = require("../controllers/getInfo");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
|
|
router.get("/", infoController.getInfo);
|
|
|
|
module.exports = router;
|