mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-09 13:10:44 +00:00
ab54c44b73
Incomplete lazy load 8
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
const graphInfoController = require("../../controllers/graphInfo");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
|
|
router.get("/", graphInfoController.getGraphInfo);
|
|
|
|
module.exports = router;
|