mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-18 20:53:52 +01:00
10 lines
289 B
TypeScript
10 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;
|