mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
12 lines
590 B
JavaScript
12 lines
590 B
JavaScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getRoute, listNode, listChannel, feeRates, listNodes } from '../../controllers/cln/network.js';
|
|
const router = Router();
|
|
router.get('/getRoute/:destPubkey/:amount', isAuthenticated, getRoute);
|
|
router.get('/listNode/:id', isAuthenticated, listNode);
|
|
router.get('/listChannel/:channelShortId', isAuthenticated, listChannel);
|
|
router.get('/feeRates/:feeRateStyle', isAuthenticated, feeRates);
|
|
router.get('/listNodes', isAuthenticated, listNodes);
|
|
export default router;
|