palico-bot/src/commands/utility/ping.js
2026-06-28 22:44:04 +02:00

13 lines
350 B
JavaScript

import { SlashCommandBuilder } from "discord.js";
const command = {
data: new SlashCommandBuilder()
.setName("ping")
.setDescription("Reponds avec Pong"),
async execute(interaction) {
console.log(interaction);
await interaction.reply({ content: "Euh... Pong ! 🐱", ephemeral: true });
},
};
export { command };