diff options
Diffstat (limited to 'cli/js/net.ts')
-rw-r--r-- | cli/js/net.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cli/js/net.ts b/cli/js/net.ts index e03175b57..654762885 100644 --- a/cli/js/net.ts +++ b/cli/js/net.ts @@ -1,7 +1,8 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { EOF, Reader, Writer, Closer } from "./io.ts"; -import { read, write, close } from "./files.ts"; -import { sendSync, sendAsync } from "./dispatch_json.ts"; +import { read, write } from "./files.ts"; +import { close } from "./ops/resources.ts"; +import { sendSync, sendAsync } from "./ops/dispatch_json.ts"; export type Transport = "tcp" | "udp"; // TODO support other types: |