Files
DiscordBOT/src/cmd/ping.ts
Asaki Yuki 12214df1e9 idk
2025-10-21 12:18:52 +07:00

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"))
}