mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-15 18:13:00 +00:00
9 lines
338 B
JavaScript
9 lines
338 B
JavaScript
|
import exprs from 'express';
|
||
|
const { Router } = exprs;
|
||
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
||
|
import { getFees, getPayments } from '../../controllers/eclair/fees.js';
|
||
|
const router = Router();
|
||
|
router.get('/fees', isAuthenticated, getFees);
|
||
|
router.get('/payments', isAuthenticated, getPayments);
|
||
|
export default router;
|