This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
legacy-musicbot/commands/ping.js
2020-09-09 17:13:32 +02:00

10 lines
229 B
JavaScript

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} ms ${emotes.success}`)
}