11 lines
220 B
JavaScript
11 lines
220 B
JavaScript
|
module.exports = class {
|
||
|
constructor (client) {
|
||
|
this.client = client;
|
||
|
}
|
||
|
|
||
|
async run () {
|
||
|
await this.client.wait(1000);
|
||
|
this.client.logger.ready(`Connected to Discord as ${this.client.user.tag}`);
|
||
|
}
|
||
|
};
|