mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-03-29 15:54:15 +00:00
17 lines
530 B
TypeScript
17 lines
530 B
TypeScript
import { SlashCommandBuilder, CommandInteraction } from "discord.js";
|
|
|
|
interface Command {
|
|
data: Omit<SlashCommandBuilder, "addSubcommand" | "addSubcommandGroup">;
|
|
execute: (interaction: CommandInteraction) => Promise<void>;
|
|
}
|
|
|
|
const command: Command = {
|
|
data: new SlashCommandBuilder()
|
|
.setName("ping")
|
|
.setDescription("Check the latency of the bot"),
|
|
execute: async (interaction) => {
|
|
await interaction.reply(`Pong! Latency: ${Date.now() - interaction.createdTimestamp}ms`);
|
|
},
|
|
};
|
|
|
|
export default command;
|