aboutsummaryrefslogtreecommitdiff
path: root/src/main.ts
diff options
context:
space:
mode:
authorMarvin Borner2020-07-18 20:09:03 +0200
committerMarvin Borner2020-07-18 20:09:03 +0200
commit5ad4683e2e59ea1d00558945872089bebea1c2b1 (patch)
tree5292033dc32b089f6d7a0775162bf24a5683acd1 /src/main.ts
parent26f84c953f9fbb9c5afb4f8a063759d272256f36 (diff)
Fixed abc submodule
Diffstat (limited to 'src/main.ts')
-rw-r--r--src/main.ts8
1 files changed, 3 insertions, 5 deletions
diff --git a/src/main.ts b/src/main.ts
index 9b16126..667131c 100644
--- a/src/main.ts
+++ b/src/main.ts
@@ -1,8 +1,6 @@
import "https://deno.land/x/dotenv/load.ts";
-// import { Application } from "https://deno.land/x/abc@v1/mod.ts";
-// import type { Context } from "https://deno.land/x/abc@v1/mod.ts";
-import { Application } from "./abc/mod.ts";
-import type { Context } from "./abc/mod.ts";
+import { Application } from "https://deno.land/x/abc@master/mod.ts";
+import type { Context } from "https://deno.land/x/abc@master/mod.ts";
import { renderFile } from "https://deno.land/x/dejs/mod.ts";
import * as groups from "./groups/index.ts";
import DBController from "./db/DBController.ts";
@@ -19,7 +17,7 @@ app.renderer = {
},
};
-app.static("/", "./src/public/"); // Manage static files
+app.static("/", "./src/public/"); // Manage static files - TODO: Consider serving css/js files separately
app.get("/", async (c: Context) => await c.render("./src/public/test.html", { name: "test" })); // Render index on /
// Load groups dynamically