mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 22:46:59 +01:00
11 lines
590 B
JavaScript
11 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;
|