diff options
Diffstat (limited to 'src')
-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 }); |