joel joel joel

This commit is contained in:
2024-05-02 13:22:15 +02:00
commit 73200479bd
20 changed files with 684 additions and 0 deletions

13
commands/ping/index.ts Normal file
View File

@@ -0,0 +1,13 @@
import { SlashCommandBuilder } from "discord.js";
import type { Command } from "../command";
const command: Command = {
data: new SlashCommandBuilder()
.setName("ping")
.setDescription("Replies with Pong!"),
execute: async (interaction) => {
await interaction.reply("Pong!");
},
};
export default command;