tadaa-runner
Version:
Monitor stuff via the medium of sound.
22 lines (21 loc) • 412 B
JavaScript
module.exports = function(tadaa) {
return {
"first example plugin instance" : {
"interval": 2000,
"name" : "tadaa-example",
"options" : {
"message" : "first",
"multiplier" : 100
}
},
"second example plugin instance" : {
"interval": 3000,
"name" : "tadaa-example",
"valueFn": "otherGetValue",
"options" : {
"message" : "second",
"multiplier" : 10
}
},
};
};