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

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