9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
const { Events } = require('discord.js');
|
|
|
|
module.exports = {
|
|
name: Events.ClientReady,
|
|
once: true,
|
|
execute(client) {
|
|
console.log(`Ready! Logged in as ${client.user.tag}`);
|
|
},
|
|
}; |