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