Initial commit

This commit is contained in:
CL TheDreWen
2025-10-28 11:40:35 +01:00
committed by GitHub
commit c41ef18355
10 changed files with 800 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 !');
}
}