diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-07 01:08:51 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-07 01:12:48 -0500 |
| commit | 0d048b8704c0709506d3d14a26d540a4b8eb470e (patch) | |
| tree | 71db1ab244bb46bf2726caccc691815528943edc /http_test.ts | |
Init
Original: https://github.com/denoland/deno_std/commit/60735e18043b54f51cf794ebe152459d5e066e6d
Diffstat (limited to 'http_test.ts')
| -rw-r--r-- | http_test.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/http_test.ts b/http_test.ts new file mode 100644 index 000000000..32c868ad5 --- /dev/null +++ b/http_test.ts @@ -0,0 +1,4 @@ +import { listen } from "./server.ts"; + +const s = listen("0.0.0.0:4500"); +s.serve(); |
