diff --git a/commands/Info/ping.js b/commands/Info/ping.js new file mode 100644 index 0000000..45b7b3e --- /dev/null +++ b/commands/Info/ping.js @@ -0,0 +1,10 @@ +module.exports = { + name: "ping", + description: "Renvoie le ping du bot", + + run: async (client, interaction) => { + // send bot ping and ws latency + interaction.followUp({ content: `Ping : \`${client.ws.ping} ms\` 🚀` }); + + } +};