mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 14:40:42 +01:00
7 lines
215 B
JavaScript
7 lines
215 B
JavaScript
const graphInfoController = require("../../controllers/graphInfo");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
|
|
router.get("/", graphInfoController.getGraphInfo);
|
|
|
|
module.exports = router;
|