mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-13 12:33:07 +02:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
|
|
const WalletController = require("../controllers/wallet");
|
||
|
|
const express = require("express");
|
||
|
|
const router = express.Router();
|
||
|
|
|
||
|
|
router.post("/:operation", WalletController.operateWallet);
|
||
|
|
|
||
|
|
module.exports = router;
|