Added main files

This commit is contained in:
Ahmad Khan 2023-09-15 21:47:33 -04:00
parent 7dfe149a2b
commit 0c96eed83a
8 changed files with 648 additions and 0 deletions

View file

@ -0,0 +1,9 @@
import { SlashCommandBuilder, CommandInteraction } from 'discord.js';
export const data = new SlashCommandBuilder()
.setName('ping')
.setDescription('Replies with Pong!');
export async function execute(interaction: CommandInteraction) {
return interaction.reply('Pong!');
}