import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js" export const data = new SlashCommandBuilder().setName("ping").setDescription("Replies with Pong!") export const exec = async (interaction: ChatInputCommandInteraction) => { await interaction.reply(["Pong!", "# Client "].join("\n")) }