summary refs log tree commit diff
path: root/src/Server.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/Server.ts')
-rw-r--r--src/Server.ts3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Server.ts b/src/Server.ts

index d08794c8..fa4111db 100644 --- a/src/Server.ts +++ b/src/Server.ts
@@ -10,7 +10,6 @@ import i18nextMiddleware, { I18next } from "i18next-http-middleware"; import i18nextBackend from "i18next-node-fs-backend"; import { ErrorHandler } from "./middlewares/ErrorHandler"; import { BodyParser } from "./middlewares/BodyParser"; -import mongoose from "mongoose"; export interface DiscordServerOptions extends ServerOptions {} @@ -43,7 +42,7 @@ export class DiscordServer extends Server { async start() { // @ts-ignore - await mongoose.connect(process.env.MONGO_URL); + await (db as Promise<Connection>); await this.setupSchema(); console.log("[DB] connected"); await Promise.all([Config.init()]);