Ride-The-Lightning-RTL/backend/routes/cln/onchain.js

10 lines
407 B
JavaScript
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 { getNewAddress, onChainWithdraw, getUTXOs } from '../../controllers/cln/onchain.js';
2021-12-29 18:08:41 -05:00
const router = Router();
router.get('/', isAuthenticated, getNewAddress);
router.post('/', isAuthenticated, onChainWithdraw);
router.get('/utxos/', isAuthenticated, getUTXOs);
export default router;