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