2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-15 18:13:00 +00:00
RTL/routes/authenticate.js
2019-01-01 11:26:51 -05:00

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;