mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-15 18:13:00 +00:00
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;
|