styling fixes and some typing
diff --git a/src/index.ts b/src/index.ts
index 87bbc02..49ade67 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -23,9 +23,9 @@
client.noLog = [] as string[];
client.database = {
guilds: await new Guilds().setup(),
- history: await new History().setup(),
- notes: await new ModNotes().setup(),
- premium: await new Premium().setup(),
+ history: new History(),
+ notes: new ModNotes(),
+ premium: new Premium(),
eventScheduler: await new EventScheduler().start()
} as {
guilds: Guilds;