Discord bot to open dong files
1import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
2import type { customClient } from "../../index.ts";
3
4export const data = new SlashCommandBuilder()
5 .setName("ping")
6 .setDescription("Replies with pong!");
7export const execute = async (
8 interaction: ChatInputCommandInteraction & { client: customClient }
9) => {
10 await interaction.reply("Pong!");
11};