mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
13 lines
410 B
TypeScript
13 lines
410 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getNewAddress, onChainWithdraw, getUTXOs } from '../../controllers/cln/onchain.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getNewAddress);
|
|
router.post('/', isAuthenticated, onChainWithdraw);
|
|
router.get('/utxos/', isAuthenticated, getUTXOs);
|
|
|
|
export default router;
|