11 lines
256 B
JavaScript
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\` 🚀` });
|
|
|
|
}
|
|
};
|