aboutsummaryrefslogtreecommitdiff
path: root/src/commands/ping.js
blob: 3ed17020c59d48a720943c29412cddfaf774e65b (plain) (blame)
1
2
3
4
5
6
7
module.exports.run = async (client, message, args) => {
    message.reply("**PONG!** :ping_pong: " + Math.round(client.ping) + " ms");
}

module.exports.config = {
    command: "ping"
}