Ride-The-Lightning-RTL/backend/routes/cln/payments.js
2022-12-27 19:04:23 -08:00

8 lines
338 B
JavaScript

import exprs from 'express';
const { Router } = exprs;
import { isAuthenticated } from '../../utils/authCheck.js';
import { listPayments, postPayment } from '../../controllers/cln/payments.js';
const router = Router();
router.get('/', isAuthenticated, listPayments);
router.post('/', isAuthenticated, postPayment);
export default router;