aboutsummaryrefslogtreecommitdiff
path: root/src/commands/ping.js
blob: 95a561e14aadf47be513e0e86ce09624fe3ab1cb (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"
}