12 lines
372 B
JavaScript
12 lines
372 B
JavaScript
"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;
|
|
}
|
|
}
|
|
exports.CommandsBase = CommandsBase;
|
|
//# sourceMappingURL=CommandsBase.js.map
|