galactic-bot/Manager.js

35 lines
726 B
JavaScript
Raw Normal View History

2020-04-13 23:29:08 +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-13 22:38:10 +02:00
const Logger = require('./middleware/logger/Logger.js');
2020-04-08 16:01:31 +02:00
class Manager extends EventEmitter {
2020-04-08 16:27:34 +02:00
constructor(options) {
2020-04-09 16:30:52 +02:00
super();
this.shardManager = new ShardManager('./structure/client/DiscordClient.js', options);
2020-04-08 16:27:34 +02:00
this.storageManager = new StorageManager(this, options.storage)
.initialize();
this.logger = new Logger(this);
this._built = false;
2020-04-13 23:29:08 +02:00
2020-04-08 16:27:34 +02:00
}
2020-04-13 23:29:08 +02:00
2020-04-08 16:27:34 +02:00
async build() {
await this.shardManager.spawn();
2020-04-09 16:30:52 +02:00
2020-04-08 16:27:34 +02:00
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;