woomy-v2/bot/event_modules/ready/ready.js

12 lines
316 B
JavaScript
Raw Normal View History

2020-10-20 08:30:46 +00:00
class Ready {
constructor () {
this.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 = new Ready();