Files
gestion/events/client/ready.js
T
2024-02-13 21:45:11 +01:00

11 lines
289 B
JavaScript

const { Events, ActivityType } = require("discord.js")
module.exports = {
name : Events.ClientReady,
async run(client) {
client.application.commands.set(client.commands.map(command => command.data));
console.log(`${client.user.username} est en ligne`);
},
};