First Commit for code init.

This commit is contained in:
2025-09-19 08:42:17 +02:00
parent 32894e497b
commit 6937973b4e
7 changed files with 567 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import { CommandInteraction, SlashCommandBuilder } from "discord.js";
export default {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Pong again!'),
async execute(interaction : CommandInteraction) {
await interaction.reply('Pong !');
}
}