2023-11-26 23:02:34 +00:00
|
|
|
const { Events } = require('discord.js');
|
2023-11-17 23:47:17 +00:00
|
|
|
|
2023-11-26 23:02:34 +00:00
|
|
|
module.exports = {
|
|
|
|
name: Events.ClientReady,
|
|
|
|
once: true,
|
|
|
|
execute(client) {
|
|
|
|
console.log(`Ready! Logged in as ${client.user.tag}`);
|
|
|
|
},
|
|
|
|
};
|