aboutsummaryrefslogtreecommitdiff
path: root/bot/src/commands/ping.js
blob: 1bb4ccb101b220bcf5a8511d98bf69f1830749d3 (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) {
        return await interaction.reply(`**PONG!** :ping_pong: ${Math.round(interaction.client.ws.ping)} ms`);
    }
};