summaryrefslogtreecommitdiff
path: root/src/commands/ping.js
blob: 5ad8f78469a36ec90908dc122a3a716aee881b91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module.exports.run = async (client, message) => {
  message.reply('**PONG!** :ping_pong: ' + Math.round(client.ping) + ' ms');
};

exports.conf = {
  aliases: [],
  guildOnly: false,
};
exports.help = {
  name: 'ping',
  description: 'Ping the bot.',
  usage: 'ping',
  category: '- General Commands',
};