2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-10-31 09:20:27 +00:00
RTL/routes/transactions.js
ShahanaFarooqui ba84f996e6 New Themes and LND Wallet Incomplete
New Themes and LND Wallet Incomplete
2018-09-26 22:02:46 -04:00

8 lines
226 B
JavaScript

const TransactionsController = require("../controllers/transactions");
const express = require("express");
const router = express.Router();
router.post("/", TransactionsController.postTransactions);
module.exports = router;