7 lines
130 B
JavaScript
7 lines
130 B
JavaScript
module.exports = {
|
|
name: 'ready',
|
|
once: true,
|
|
execute(client) {
|
|
console.log(`Ready! Logged in as ${client.user.tag}`);
|
|
},
|
|
}; |