mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 09:50:36 +01:00
99317650f1
This reverts commit 6da363ca02
.
8 lines
226 B
JavaScript
8 lines
226 B
JavaScript
const AuthenticateController = require("../controllers/authenticate");
|
|
const express = require("express");
|
|
const router = express.Router();
|
|
|
|
router.post("/", AuthenticateController.authenticateUser);
|
|
|
|
module.exports = router;
|