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