2022-11-16 13:53:42 -05:00
|
|
|
import Discord,{SlashCommandBuilder} from 'discord.js';
|
|
|
|
import { TClient } from 'src/client';
|
2022-11-13 08:46:50 -05:00
|
|
|
export default {
|
2022-11-16 13:53:42 -05:00
|
|
|
async run(client: TClient, interaction: Discord.ChatInputCommandInteraction<'cached'>){
|
|
|
|
const msg = await interaction.reply({content: 'Pinging...', fetchReply: true})
|
|
|
|
const time = msg.createdTimestamp - interaction.createdTimestamp;
|
2022-11-17 12:58:19 -05:00
|
|
|
msg.edit(`Websocket: \`${client.ws.ping}\`ms\nBot: \`${time}\`ms`)
|
2022-11-13 08:46:50 -05:00
|
|
|
},
|
2022-11-16 13:53:42 -05:00
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('ping')
|
|
|
|
.setDescription('Check bot\'s latency')
|
2022-11-13 08:46:50 -05:00
|
|
|
}
|