Files

11 lines
256 B
JavaScript
Raw Permalink Normal View History

2022-11-05 23:07:02 +01:00
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\` 🚀` });
}
};