Last active
October 21, 2019 20:25
-
-
Save saman-ghm/062a209f754a436e44279c84655734be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Router } from "express"; | |
import AuthController from "../controllers/AuthController"; | |
const router = Router(); | |
router.post("/refreshToken", AuthController.refreshToken); | |
router.post("/login", AuthController.login); | |
export default router; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment