const { SlashCommandBuilder } = require('discord.js') module.exports = { data: new SlashCommandBuilder() .setName('ping') .setDescription('Check the latency of the bot'), async execute(interaction) { let sent = await interaction.reply({ content: 'Pinging...', fetchReply: true }) interaction.editReply(`Websocket heartbeat: ${interaction.client.ws.ping}ms.\nRoundtrip latency: ${sent.createdTimestamp - interaction.createdTimestamp}ms`) } }