First Upload

This commit is contained in:
2025-05-13 18:21:24 +02:00
parent 1d09c25366
commit 47f287e4eb
8 changed files with 1130 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
module.exports={
name: "ping",
description: "Let the ping send you a Pong!",
execute(interaction, Discord, client) {
interaction.reply({content: `Pong!\n🏓API Latency is ${Math.round(client.ws.ping)}ms`, flags: Discord.MessageFlags.Ephemeral });
}
};