2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-17 15:29:30 +00:00
RTL/routes/lnd/graphInfo.js

8 lines
215 B
JavaScript
Raw Normal View History

const graphInfoController = require("../../controllers/graphInfo");
const express = require("express");
const router = express.Router();
router.get("/", graphInfoController.getGraphInfo);
module.exports = router;