mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 14:40:42 +01:00
11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
|
import exprs from 'express';
|
||
|
const { Router } = exprs;
|
||
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
||
|
import { getFees } from '../../controllers/lnd/fees.js';
|
||
|
|
||
|
const router = Router();
|
||
|
|
||
|
router.get('/', isAuthenticated, getFees);
|
||
|
|
||
|
export default router;
|