From 43d84220dbfc7706b7c45081c31e16bfc723604b Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 9 Jul 2020 22:38:57 +0200 Subject: Hello, world! --- src/main.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/main.ts (limited to 'src/main.ts') diff --git a/src/main.ts b/src/main.ts new file mode 100644 index 0000000..e397e85 --- /dev/null +++ b/src/main.ts @@ -0,0 +1,7 @@ +import { Application } from "https://deno.land/x/abc@v1/mod.ts"; + +const app = new Application(); + +app.get("/", (c) => { + return "Hello, world!"; +}).start({ port: 8080 }); -- cgit v1.2.3