mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-24 06:47:57 +01:00
9 lines
372 B
JavaScript
9 lines
372 B
JavaScript
const ChannelsController = require("../../controllers/c-lightning/channels");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../authCheck");
|
|
|
|
router.get("/localremotebalance", authCheck, ChannelsController.getLocalRemoteBalance);
|
|
router.post("/", authCheck, ChannelsController.forwardingHistory);
|
|
|
|
module.exports = router;
|