mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 10:45:07 +00:00
19 lines
276 B
JavaScript
19 lines
276 B
JavaScript
'use strict';
|
|
|
|
function Notifier() {
|
|
}
|
|
|
|
exports.Notifier = Notifier;
|
|
|
|
Notifier.prototype.init = function(params, callback) {
|
|
callback();
|
|
};
|
|
|
|
/*
|
|
* {Object} params.notifyReson
|
|
* {Object} params.build
|
|
*/
|
|
Notifier.prototype.send = function(params, callback) {
|
|
callback();
|
|
};
|