aboutsummaryrefslogtreecommitdiff
path: root/bot/src/commands/ping.js
blob: 996c70597604dceb32ac4034966be73ed70e3e2c (plain) (blame)
1
2
3
4
5
6
7
8
9
import { SlashCommandBuilder } from 'discord.js';
export default {
    data: new SlashCommandBuilder()
        .setName('ping')
        .setDescription('Pong!'),
    async execute(interaction) {
        return await interaction.reply(`**PONG!** :ping_pong: ${Math.round(interaction.client.ws.ping)} ms`);
    }
};