woomy-v2/bot/event_modules/ready/logReady.js
2020-10-29 12:57:10 +11:00

9 lines
No EOL
279 B
JavaScript

module.exports = class {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
async run (client) {
client.logger.event(`Logged in as ${client.user.username + '#' + client.user.discriminator} and ready to accept commands! | v${client.version}`);
}
};