2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/routes/graph.js

11 lines
389 B
JavaScript
Raw Normal View History

const graphController = require("../controllers/graph");
const express = require("express");
const router = express.Router();
2019-01-01 16:26:51 +00:00
const authCheck = require("./authCheck");
2019-01-01 16:26:51 +00:00
router.get("/", authCheck, graphController.getDescribeGraph);
router.get("/info", authCheck, graphController.getGraphInfo);
router.get("/node/:pubKey", authCheck, graphController.getGraphNode);
module.exports = router;