Remove leftover comments from example

This commit is contained in:
SileNce5k 2021-07-01 17:48:42 +02:00
parent dbb3ba41d5
commit 17141991a6
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -1,7 +1,7 @@
module.exports = { module.exports = {
name: 'ping', // Keep it to one word name: 'ping',
description: 'Just ping.', description: 'Just ping.',
execute({message, client}) { //parameters you can use for netload: message, args, client, prefix execute({message, client}) {
message.channel.send(`Pong.\n${client.ws.ping}ms`) message.channel.send(`Pong.\n${client.ws.ping}ms`)
} }
}; };