This commit is contained in:
Asaki Yuki
2025-10-21 12:18:52 +07:00
parent d419ca91e6
commit 12214df1e9
6 changed files with 18 additions and 25 deletions

View File

@@ -3,5 +3,5 @@ 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!")
await interaction.reply(["Pong!", "# Client "].join("\n"))
}