8 lines
315 B
TypeScript
8 lines
315 B
TypeScript
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"))
|
|
}
|