diff options
author | Marvin Borner | 2020-07-09 22:54:19 +0200 |
---|---|---|
committer | Marvin Borner | 2020-07-09 22:54:19 +0200 |
commit | 5c6e6e9962187335d80ee8f31921ee561c430365 (patch) | |
tree | e049ddbd4c9c0b925e1b40d33b1df680da12e8a1 /src/main.ts | |
parent | 43d84220dbfc7706b7c45081c31e16bfc723604b (diff) |
HEAVY CHANGES
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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 }); |