11 lines
262 B
JavaScript
11 lines
262 B
JavaScript
|
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!');
|
||
|
},
|
||
|
};
|