Files
qcstd-bot/SlashCommand/general/ping.js
T
2025-08-26 01:01:34 +02:00

11 lines
256 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 !");
}
};