Skip to content

Instantly share code, notes, and snippets.

@tonyspiro
Created July 27, 2020 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonyspiro/a37533e4341bc7f6e6bdec2f81ee66cc to your computer and use it in GitHub Desktop.
Save tonyspiro/a37533e4341bc7f6e6bdec2f81ee66cc to your computer and use it in GitHub Desktop.
// Routes
module.exports = (app, config, partials) => {
require('./home')(app, config, partials)
require('./signup')(app, config, partials)
require('./users')(app, config, partials)
require('./auth')(app, config, partials)
require('./logout')(app, config, partials)
require('./404')(app, config, partials)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment