const { SlashCommandBuilder } = require('@discordjs/builders'); module.exports = { data: new SlashCommandBuilder() .setName('randomducul') .setDescription('Un truc random. Du cul.'), async execute(interaction) { await interaction.reply('Pong!'); }, };