12 lines
258 B
JavaScript
12 lines
258 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('ping')
|
|
.setDescription('Répond avec Pong !'),
|
|
|
|
async execute(interaction) {
|
|
await interaction.reply('🏓 Pong !');
|
|
},
|
|
};
|