Created
January 16, 2019 12:52
-
-
Save Sammuel09/f1afc6aea8980f4998d379f03ce06f98 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 UserController from '../../controllers/UserController'; | |
const userRoutes = Router(); | |
userRoutes.post('/auth/signup', UserController.signupUser); | |
export default userRoutes; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment