mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-03-12 10:30:21 +01:00
9 lines
355 B
JavaScript
9 lines
355 B
JavaScript
const TransactionsController = require("../../controllers/lnd/transactions");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../authCheck");
|
|
|
|
router.get("/", authCheck, TransactionsController.getTransactions);
|
|
router.post("/", authCheck, TransactionsController.postTransactions);
|
|
|
|
module.exports = router;
|