guess who forgot to add files
diff --git a/src/commands/verify.ts b/src/commands/verify.ts
new file mode 100644
index 0000000..bb93dde
--- /dev/null
+++ b/src/commands/verify.ts
@@ -0,0 +1,19 @@
+import { CommandInteraction } from "discord.js";
+import { SlashCommandBuilder } from "@discordjs/builders";
+import { WrappedCheck } from "jshaiku";
+
+const command = new SlashCommandBuilder()
+ .setName("verify")
+ .setDescription("Get verified in the server")
+
+const callback = (interaction: CommandInteraction) => {
+ interaction.reply("Command incomplete [verify]");
+}
+
+const check = (interaction: CommandInteraction, defaultCheck: WrappedCheck) => {
+ return true;
+}
+
+export { command };
+export { callback };
+export { check };
\ No newline at end of file