Created
October 21, 2019 20:45
-
-
Save saman-ghm/6178fc3d51ae1b36ca7909e958aef1a1 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 auth from "./auth"; | |
import user from "./user"; | |
const routes = Router(); | |
routes.use("/auth", auth); | |
routes.use("/user", user); | |
export default routes; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment