2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
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

10 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;