diff options
author | Marvin Borner | 2020-07-18 21:05:49 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 21:05:49 +0200 |
commit | c96473af48f650ac568a9a9203f3d6bbe74ff080 (patch) | |
tree | 84c66793f25344de120d5bf26cf2f36bfaf0b80b /src/main.ts | |
parent | 39254cbdaffe91c599ab268cef8999a16a0ef7f0 (diff) |
Whoops forgot adding the significant files, fixing the test :)
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main.ts b/src/main.ts index 667131c..1772e97 100644 --- a/src/main.ts +++ b/src/main.ts @@ -5,8 +5,12 @@ import { renderFile } from "https://deno.land/x/dejs/mod.ts"; import * as groups from "./groups/index.ts"; import DBController from "./db/DBController.ts"; +let dbc: DBController; // Ugly solution -(async () => await new DBController().init())(); +(async () => { + dbc = new DBController(); + await dbc.init(); +})(); const port = parseInt(Deno.env.get("PORT") || "8080"); const app = new Application(); |