mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-04-03 18:24:14 +00:00
16 lines
427 B
TypeScript
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;
|