diff options
author | Marvin Borner | 2020-07-18 15:07:19 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-18 15:07:19 +0200 |
commit | 476715384f4a5d0b7d887961b43b7aa271c08495 (patch) | |
tree | 32501aca89192e84a57c5f10eef505226205e75e /src/main.ts | |
parent | a9615553221706967527ee51e5387b16cf12cd12 (diff) |
WHO TH INDENTS WITH 2 SPACES YOU FRIGGIN DENOSAURS
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.ts b/src/main.ts index 828ec24..3eded62 100644 --- a/src/main.ts +++ b/src/main.ts @@ -6,19 +6,19 @@ import * as groups from "./groups/index.ts"; import DBController from "./db/DBController.ts"; // Ugly solution -(async () => await (new DBController()).init())(); +(async () => await new DBController().init())(); const port = parseInt(Deno.env.get("PORT") || "8080"); const app = new Application(); app.renderer = { - render<T>(name: string, data: T): Promise<Deno.Reader> { - return renderFile(name, data); - }, + render<T>(name: string, data: T): Promise<Deno.Reader> { + return renderFile(name, data); + }, }; app.static("/", "./src/public/"); // Manage static files -app.get("/", async (c: Context) => await c.render("./src/public/index.html")); // Render index on / +app.get("/", async (c: Context) => await c.render("./src/public/test.html", { name: "test" })); // Render index on / // Load groups dynamically // deno-lint-ignore ban-ts-comment |