From 5c6e6e9962187335d80ee8f31921ee561c430365 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 9 Jul 2020 22:54:19 +0200 Subject: HEAVY CHANGES --- src/main.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.ts') diff --git a/src/main.ts b/src/main.ts index e397e85..29dc789 100644 --- a/src/main.ts +++ b/src/main.ts @@ -2,6 +2,8 @@ import { Application } from "https://deno.land/x/abc@v1/mod.ts"; const app = new Application(); +console.log("Started server!"); + app.get("/", (c) => { return "Hello, world!"; }).start({ port: 8080 }); -- cgit v1.2.3