Initial Commit
This commit is contained in:
commit
6d2e379a0c
41 changed files with 5064 additions and 0 deletions
13
src/commands/utility/ping.js
Normal file
13
src/commands/utility/ping.js
Normal 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 };
|
||||
Loading…
Add table
Add a link
Reference in a new issue