for coded
diff --git a/src/index.ts b/src/index.ts
index 9a361f6..9e2770c 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,11 +1,15 @@
 import { HaikuClient } from 'jshaiku';
 import { Intents } from 'discord.js';
 import config from './config/main.json' assert {type: 'json'};
-
+import { Logger } from './utils/log.js';
 const client = new HaikuClient({
     intents: new Intents(32767).bitfield,  // This is a way of specifying all intents w/o having to type them out
 }, config);
 
 await client.registerCommandsIn("./commands");
+await client.registerEventsIn("./events");
+
+client.logger = new Logger()
+client.verify = {}
 
 await client.login();
\ No newline at end of file