2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-11 13:10:41 +00:00
RTL/routes/graph.js

10 lines
314 B
JavaScript
Raw Normal View History

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;