2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/server/routes/lnd/switch.ts
2022-12-27 19:04:23 -08:00

11 lines
289 B
TypeScript

import exprs from 'express';
const { Router } = exprs;
import { isAuthenticated } from '../../utils/authCheck.js';
import { forwardingHistory } from '../../controllers/lnd/switch.js';
const router = Router();
router.post('/', isAuthenticated, forwardingHistory);
export default router;