mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 09:50:36 +01:00
8 lines
281 B
JavaScript
8 lines
281 B
JavaScript
|
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;
|