diff --git a/commands/ping.js b/commands/ping.js new file mode 100644 index 0000000..64cc37f --- /dev/null +++ b/commands/ping.js @@ -0,0 +1,9 @@ +const emotes = require ("../config/emojis.json"); +const Discord = require("discord.js") + +exports.run = async (client, message, args) => { + + //Message + message.channel.send(`Ping : ${client.ws.ping} ${emotes.success}`) + +}