Files
discord-forum-automessage/commands/Info/ping.js
T
2022-11-05 23:07:02 +01:00

11 lines
256 B
JavaScript

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\` 🚀` });
}
};