actionhero
Version:
actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks
19 lines (16 loc) • 330 B
JavaScript
module.exports = {
loadPriority: %%loadPriority%%,
startPriority: %%startPriority%%,
stopPriority: %%stopPriority%%,
initialize: function (api, next) {
api.%%name%% = {}
return next()
},
start: function (api, next) {
return next()
},
stop: function (api, next) {
return next()
}
}