2019-09-01 17:01:38 +00:00
|
|
|
const graphInfoController = require("../../controllers/graphInfo");
|
2018-09-27 02:02:46 +00:00
|
|
|
const express = require("express");
|
|
|
|
const router = express.Router();
|
|
|
|
|
|
|
|
router.get("/", graphInfoController.getGraphInfo);
|
|
|
|
|
|
|
|
module.exports = router;
|