Skip to content

Instantly share code, notes, and snippets.

@maisonm
Created May 21, 2018 02:51
Show Gist options
  • Save maisonm/1f94e40381bcee47ce2d2a094a292054 to your computer and use it in GitHub Desktop.
Save maisonm/1f94e40381bcee47ce2d2a094a292054 to your computer and use it in GitHub Desktop.
const fs = require('fs');
const path = require('path');
module.exports = (app) => {
fs.readdirSync('routes/api/').forEach((file) => {
require(`./api/${file.substr(0, file.indexOf('.'))}`)(app);
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment