From 6b8390a7f30176b35279c7f661527040c4b5ec74 Mon Sep 17 00:00:00 2001 From: = Date: Fri, 9 Jul 2021 18:15:33 -0400 Subject: [PATCH] Ping Pong --- commands/ping.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 commands/ping.js diff --git a/commands/ping.js b/commands/ping.js new file mode 100644 index 0000000..d9035ae --- /dev/null +++ b/commands/ping.js @@ -0,0 +1,7 @@ +module.exports = { + name: 'ping', + description: 'Pong!', + execute(message, args) { + message.channel.send('Pong!'); + } +} \ No newline at end of file