Ride-The-Lightning-RTL/routes/graphInfo.js

8 lines
212 B
JavaScript
Raw Normal View History

const graphInfoController = require("../controllers/graphInfo");
const express = require("express");
const router = express.Router();
router.get("/", graphInfoController.getGraphInfo);
module.exports = router;