mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
ba84f996e6
New Themes and LND Wallet Incomplete
8 lines
212 B
JavaScript
8 lines
212 B
JavaScript
const graphInfoController = require("../controllers/graphInfo");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
|
|
router.get("/", graphInfoController.getGraphInfo);
|
|
|
|
module.exports = router;
|