Command registration (for mini)
diff --git a/src/commands/verify.ts b/src/commands/verify.ts
index b9556a6..bf6a306 100644
--- a/src/commands/verify.ts
+++ b/src/commands/verify.ts
@@ -5,6 +5,7 @@
 const command = new SlashCommandBuilder().setName("verify").setDescription("Get verified in the server");
 
 const callback = async (interaction: CommandInteraction): Promise<void> => {
+    interaction.reply("boo")
     verify(interaction);
 };