Files
beatbot/commands/utils/ping.js
2024-04-26 16:33:00 +02:00

10 lines
184 B
JavaScript

module.exports = {
name: "ping",
description: "Get the bot latency ",
async run(client, message) {
message.reply(`Ping : \`${client.ws.ping}ms\`.`);
}
};