Files
2026-09-08 20:28:54 +08:00

18 lines
265 B
JavaScript

(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);