woomy-v2/bot/event_modules/ready/ready.js
2020-10-20 23:19:12 +11:00

12 lines
327 B
JavaScript

class Ready {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
async run (client) {
client.editStatus('online', { name: `Goddess of Discord! | v${client.version}`});
client.logger.event(`Woomy v${client.version} initialized and ready to accept commands!`);
}
}
module.exports = Ready;