blob: 41062e0bc1297a9933ea585c379b3d968fe5d857 [file] [log] [blame]
(function() {
var Command;
Command = (function() {
function Command(command, callback) {
this.command = command;
this.callback = callback;
this.next = null;
}
return Command;
})();
module.exports = Command;
}).call(this);