digger-stack
Version:
A service map for a digger network
27 lines • 605 B
JavaScript
// we put the requires inside of functions
// as a load on demand feature - we will use
// this to bootstrap various servers
// lets not bloat the memory with others the process does not need
module.exports = {
runner:function(){
return require('./stack');
},
reception:function(){
return require('./reception');
},
app:function(){
return require('./app');
},
warehouse:function(){
return require('./warehouse');
},
core:function(){
return require('./digger');
},
appbuilder:function(){
return require('./buildapp');
},
appinfo:function(){
return require('./logger').stack;
}
}