const { Client, CommandInteraction } = require("discord.js"); module.exports = { name: "ping", description : "Donne le temps de réaction du bot", permission: "ADMINISTRATOR", /** * * @param {CommandInteraction} interaction * @param {Client} client */ execute(interaction, client) { interaction.reply({content: `Mon temps de réponse est de \`${client.ws.ping}\``}) } }