mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 22:46:59 +01:00
11 lines
361 B
TypeScript
11 lines
361 B
TypeScript
import exprs from 'express';
|
|
const { Router } = exprs;
|
|
import { isAuthenticated } from '../../utils/authCheck.js';
|
|
import { getTransactions, postTransactions } from '../../controllers/lnd/transactions.js';
|
|
|
|
const router = Router();
|
|
|
|
router.get('/', isAuthenticated, getTransactions);
|
|
router.post('/', isAuthenticated, postTransactions);
|
|
|
|
export default router;
|