galactic-bot/Manager.js

37 lines
880 B
JavaScript
Raw Normal View History

2020-04-08 16:01:31 +02:00
const { EventEmitter } = require('events');
2020-04-08 16:27:34 +02:00
2020-04-08 18:08:46 +02:00
const ShardManager = require('./middleware/ShardManager.js');
const StorageManager = require('./storage/StorageManager.js');
2020-04-09 16:25:06 +02:00
const Registry = require('./Registry.js');
2020-04-08 16:27:34 +02:00
2020-04-08 18:08:46 +02:00
const { Command, Setting, Inhibitor } = require('./structure/interfaces/');
2020-04-08 16:01:31 +02:00
class Manager extends EventEmitter {
2020-04-08 16:27:34 +02:00
constructor(options) {
this.registry = new Registry(this);
2020-04-08 18:08:46 +02:00
this.shardManager = new ShardManager(this, './middleware/client/DiscordClient.js', options.shard)
.spawn();
2020-04-08 16:27:34 +02:00
this.storageManager = new StorageManager(this, options.storage)
.initialize();
this.logger = new Logger(this);
this._built = false;
}
async build() {
await this.registry.loadComponents('components/commands/', Command);
this._built = true;
}
2020-04-08 16:01:31 +02:00
}
2020-04-08 16:27:34 +02:00
2020-04-08 16:01:31 +02:00
module.exports = Manager;