mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-23 14:40:42 +01:00
8 lines
269 B
JavaScript
8 lines
269 B
JavaScript
const PaymentsController = require("../../controllers/lnd/payments");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("../authCheck");
|
|
|
|
router.get("/", authCheck, PaymentsController.getPayments);
|
|
|
|
module.exports = router;
|