mirror of
https://github.com/zhigang1992/deployd.git
synced 2026-06-05 06:40:37 +08:00
15 lines
209 B
JavaScript
15 lines
209 B
JavaScript
var Monitor = require('../../lib/monitor');
|
|
var commands = {};
|
|
|
|
commands.test = function (msg, fn) {
|
|
fn(null, msg);
|
|
}
|
|
|
|
commands.crash = function () {
|
|
throw 'crash!';
|
|
}
|
|
|
|
Monitor.createCommands(commands);
|
|
|
|
|