Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created October 9, 2018 08:40
Show Gist options
  • Save amandeepmittal/bbea52df9d6d571cabd317940f0a3954 to your computer and use it in GitHub Desktop.
Save amandeepmittal/bbea52df9d6d571cabd317940f0a3954 to your computer and use it in GitHub Desktop.
// index.js
const router = require('express').Router();
const bookRoutes = require('./books');
router.use('/api/books', bookRoutes);
module.exports = router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment