mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-18 20:53:52 +01:00
8 lines
262 B
JavaScript
8 lines
262 B
JavaScript
const SwitchController = require("../controllers/switch");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
const authCheck = require("./authCheck");
|
|
|
|
router.post("/", authCheck, SwitchController.forwardingHistory);
|
|
|
|
module.exports = router;
|