Ride-The-Lightning-RTL/routes/graph.js
ShahanaFarooqui 6aa38279c1 Channel Enhancements
1) Force Closing, 2) Status Captions, 3) Page breakup, 4) Total Balance
2018-11-11 22:17:30 -05:00

9 lines
314 B
JavaScript

const graphController = require("../controllers/graph");
const express = require("express");
const router = express.Router();
router.get("/", graphController.getDescribeGraph);
router.get("/info", graphController.getGraphInfo);
router.get("/node/:pubKey", graphController.getGraphNode);
module.exports = router;