Ride-The-Lightning-RTL/routes/graphInfo.js
ShahanaFarooqui ba84f996e6 New Themes and LND Wallet Incomplete
New Themes and LND Wallet Incomplete
2018-09-26 22:02:46 -04:00

8 lines
212 B
JavaScript

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