Skip to content

Instantly share code, notes, and snippets.

@Sammuel09
Created January 16, 2019 12:54
Show Gist options
  • Save Sammuel09/0e0e1411f9e9f3dee907d2d8802a7f66 to your computer and use it in GitHub Desktop.
Save Sammuel09/0e0e1411f9e9f3dee907d2d8802a7f66 to your computer and use it in GitHub Desktop.
Index file of Routes folder
import { Router } from 'express';
import userRoutes from './api/user';
const routes = Router();
routes.use(userRoutes);
export default routes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment