aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 21:05:49 +0200
committerMarvin Borner2020-07-18 21:05:49 +0200
commitc96473af48f650ac568a9a9203f3d6bbe74ff080 (patch)
tree84c66793f25344de120d5bf26cf2f36bfaf0b80b /src/main.ts
parent39254cbdaffe91c599ab268cef8999a16a0ef7f0 (diff)
Whoops forgot adding the significant files, fixing the test :)
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts6
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();