Skip to content

Instantly share code, notes, and snippets.

@saman-ghm
Created October 21, 2019 20:45
Show Gist options
  • Save saman-ghm/6178fc3d51ae1b36ca7909e958aef1a1 to your computer and use it in GitHub Desktop.
Save saman-ghm/6178fc3d51ae1b36ca7909e958aef1a1 to your computer and use it in GitHub Desktop.
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