bot-louis/events/ready.js
2024-02-26 14:45:34 +01:00

10 lines
203 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}`);
},
};