mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-16 13:00:45 +02:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getNewAddress } from '../../controllers/lnd/newAddress.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getNewAddress);
|
|
|
|
export default router;
|