2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-17 15:29:30 +00:00
RTL/server/routes/cln/payments.ts

12 lines
341 B
TypeScript
Raw Normal View History

2021-12-29 23:08:41 +00:00
import exprs from 'express';
const { Router } = exprs;
import { isAuthenticated } from '../../utils/authCheck.js';
import { listPayments, postPayment } from '../../controllers/cln/payments.js';
2021-12-29 23:08:41 +00:00
const router = Router();
router.get('/', isAuthenticated, listPayments);
router.post('/', isAuthenticated, postPayment);
export default router;