galactic-bot/Manager.js
2020-04-09 15:08:28 -06:00

37 lines
780 B
JavaScript

const { EventEmitter } = require('events');
const ShardManager = require('./middleware/ShardManager.js');
const StorageManager = require('./storage/StorageManager.js');
const Logger = require('./Logger.js');
const { Command, Setting, Inhibitor } = require('./structure/interfaces/');
class Manager extends EventEmitter {
constructor(options) {
super();
this.shardManager = new ShardManager('./structure/client/DiscordClient.js', options);
this.storageManager = new StorageManager(this, options.storage)
.initialize();
this.logger = new Logger(this);
this._built = false;
}
async build() {
await this.shardManager.spawn();
this._built = true;
}
}
module.exports = Manager;