diff --git a/08 - Ping Command/src/commands/misc/ping.js b/08 - Ping Command/src/commands/misc/ping.js deleted file mode 100644 index e2bf088..0000000 --- a/08 - Ping Command/src/commands/misc/ping.js +++ /dev/null @@ -1,12 +0,0 @@ -module.exports = { - name: 'ping', - description: 'Pong!', - // devOnly: Boolean, - testOnly: true, - // options: Object[], - // deleted: Boolean, - - callback: (client, interaction) => { - interaction.reply(`Pong! ${client.ws.ping}ms`); - }, -};