diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-12-23 18:49:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-12-23 18:49:46 -0500 |
| commit | 7143f7d86043c05f0b4a303a41c29ea90b87dc63 (patch) | |
| tree | 01641b145ee36d161e81e68466843f4f3e2c9985 /net/http.ts | |
| parent | 0b9ab1249b4bc0a7ab34ee68ca9ea71d7cd7d2ff (diff) | |
Make compatible with latest deno (denoland/deno_std#41)
Original: https://github.com/denoland/deno_std/commit/0772030f5d08c97744dc0d3d102dec437464bc28
Diffstat (limited to 'net/http.ts')
| -rw-r--r-- | net/http.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/http.ts b/net/http.ts index 2b0e5477a..e360e0d86 100644 --- a/net/http.ts +++ b/net/http.ts @@ -1,8 +1,8 @@ import { listen, Conn, toAsyncIterator, Reader, copy } from "deno"; import { BufReader, BufState, BufWriter } from "./bufio.ts"; import { TextProtoReader } from "./textproto.ts"; -import { STATUS_TEXT } from "./http_status"; -import { assert } from "./util"; +import { STATUS_TEXT } from "./http_status.ts"; +import { assert } from "./util.ts"; interface Deferred { promise: Promise<{}>; |
