Skip to content

Instantly share code, notes, and snippets.

@akiva
Created February 4, 2015 06:26
Show Gist options
  • Save akiva/bf9fcb72229af3c8cd02 to your computer and use it in GitHub Desktop.
Save akiva/bf9fcb72229af3c8cd02 to your computer and use it in GitHub Desktop.
// users.js
exports.list = function (options) {
return function (req, res, ...) {
// ...
}
}
// app.js
var users = require('./routes/users');
// ...
app.get('/users', users.list({ options }));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment