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

9 lines
279 B
JavaScript
Raw Normal View History

2020-10-21 00:39:16 +00:00
module.exports = class {
2020-10-20 10:23:07 +00:00
constructor (wsEvent) {
this.wsEvent = wsEvent;
2020-10-20 08:30:46 +00:00
}
async run (client) {
2020-10-28 07:01:33 +00:00
client.logger.event(`Logged in as ${client.user.username + '#' + client.user.discriminator} and ready to accept commands! | v${client.version}`);
2020-10-20 08:30:46 +00:00
}
2020-10-21 00:39:16 +00:00
};