2017-12-13 19:55:08 +00:00
|
|
|
"use strict";
|
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
|
|
class CommandsBase {
|
|
|
|
|
constructor(region, agent, bot) {
|
|
|
|
|
this.currentRegion = region;
|
|
|
|
|
this.agent = agent;
|
|
|
|
|
this.bot = bot;
|
|
|
|
|
this.circuit = this.currentRegion.circuit;
|
|
|
|
|
}
|
2018-10-09 20:03:28 +01:00
|
|
|
shutdown() {
|
|
|
|
|
}
|
2017-12-13 19:55:08 +00:00
|
|
|
}
|
|
|
|
|
exports.CommandsBase = CommandsBase;
|
|
|
|
|
//# sourceMappingURL=CommandsBase.js.map
|