mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
6aa38279c1
1) Force Closing, 2) Status Captions, 3) Page breakup, 4) Total Balance
10 lines
314 B
JavaScript
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;
|