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