blob: e2ff2139c914a7b20b5dc6a30b79feb797fb2790 (
plain) (
blame)
1
2
3
4
5
6
7
|
module.exports.run = async (client, message, args, abVersion) => {
message.reply("**PONG!** :ping_pong: " + Math.round(client.ping) + " ms");
}
module.exports.config = {
command: "ping"
}
|