Initial Commit

This commit is contained in:
Shinuwa 2026-06-28 22:44:04 +02:00
commit 6d2e379a0c
41 changed files with 5064 additions and 0 deletions

View file

@ -0,0 +1,13 @@
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 };