Created
July 27, 2020 18:12
-
-
Save tonyspiro/a37533e4341bc7f6e6bdec2f81ee66cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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