diff options
-rwxr-xr-x | run | 3 | ||||
-rw-r--r-- | src/main.ts | 7 |
2 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,3 @@ +#!/usr/bin/env sh + +deno run --allow-net 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 }); |