Billy/events/ ready.js

7 lines
130 B
JavaScript
Raw Normal View History

2021-11-09 09:34:55 +01:00
module.exports = {
name: 'ready',
once: true,
execute(client) {
console.log(`Ready! Logged in as ${client.user.tag}`);
},
};