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;