aboutsummaryrefslogtreecommitdiff
path: root/commands/ping.js
blob: a9dc141a1d916922a236d84bfd4373f86b05ea91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { SlashCommandBuilder } from 'discord.js';

export default {
    data: new SlashCommandBuilder()
        .setName('ping')
        .setDescription('Pong!'),
    async execute(interaction, bot) {
        return await interaction.reply(`Pong! ${Math.round(bot.ws.ping)}ms`);
    }
};