diff options
Diffstat (limited to 'src/main.ts')
-rw-r--r-- | src/main.ts | 7 |
1 files changed, 7 insertions, 0 deletions
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 }); |