bot18
Version:
A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f
29 lines (28 loc) • 609 B
JavaScript
module.exports = {
// meta
_ns: 'motley',
_folder: 'hooks',
// core hook registration
'boot[]': function container (get, set) {
return function task (cb) {
// respond to the boot hook
setImmediate(cb)
}
},
'mount[]': function container (get, set) {
return function task (cb) {
// respond to the mount hook
setImmediate(cb)
}
},
'listen[]': function container (get, set) {
return function task (cb) {
setImmediate(cb)
}
},
'close[1]': function container (get, set) {
return function task (cb) {
setImmediate(cb)
}
}
}