Initial update to try and fix #1

This commit is contained in:
Logan Cusano
2023-03-26 15:03:35 -04:00
parent 403b533a33
commit b296da629b
14 changed files with 225 additions and 120 deletions

6
Client/commands/ping.js Normal file
View File

@@ -0,0 +1,6 @@
// Utilities
const { replyToInteraction } = require('../utilities/messageHandler.js');
export default function ping(interaction) {
return replyToInteraction(interaction, "Pong! I have Aids and now you do too!");
}