UNPKG

mongodb-simple-rest

Version:
18 lines (14 loc) 367 B
module.exports = function (config, app) { var path = require('path'); var routey = require('routey'); routey({ routeConfigPath: path.join(__dirname, "rest"), verbose: true, handlerParams: { host: config.host, port: config.port, logger: config.logger, }, parentRoute: config.parentRoute, }, app); };