poixpixel-discord-bot/src/commands/util/ping.ts
2025-02-28 23:23:39 -05:00

16 lines
427 B
TypeScript

import { SlashCommandBuilder } from 'discord.js';
import { Command } from '../../types/CommandTypes.js';
const command: Command = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Check the latency from you to the bot'),
execute: async (interaction) => {
await interaction.reply(
`Pong! Latency: ${Date.now() - interaction.createdTimestamp}ms`,
);
},
};
export default command;