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