📝 New command

This commit is contained in:
Zerio
2020-06-24 15:20:14 +02:00
committed by GitHub
parent 18f66e3d50
commit e2ce6a9844

9
commands/ping.js Normal file
View File

@@ -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}`)
}