mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
ab54c44b73
Incomplete lazy load 8
9 lines
270 B
JavaScript
9 lines
270 B
JavaScript
const SwitchController = require("../../controllers/lnd/switch");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../authCheck");
|
|
|
|
router.post("/", authCheck, SwitchController.forwardingHistory);
|
|
|
|
module.exports = router;
|