UNPKG

hinoki

Version:

sane, simple dependency injection and more

12 lines (11 loc) 183 B
module.exports.startApp = function( console, startServer, startWorkers ) { return function() { console.log('starting app'); startWorkers(); startServer(); }; };