Ride-The-Lightning-RTL/server/routes/lnd/switch.ts

11 lines
289 B
TypeScript
Raw Normal View History

2021-12-29 18:08:41 -05:00
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;