Files
tkmind_go/services/ask-ai-bot/commands/ping.ts
T
BestCodes 849cc60fbc feat: ask ai discord bot (#6842)
Signed-off-by: The-Best-Codes <bestcodes.official@gmail.com>
2026-02-02 22:11:28 +00:00

11 lines
340 B
TypeScript

import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
export default {
data: new SlashCommandBuilder().setName("ping").setDescription("Ping!"),
async execute(data: { interaction: ChatInputCommandInteraction }) {
const interaction = data.interaction;
await interaction.reply("Bot is online.");
},
};