diff options
Diffstat (limited to 'ext/node/polyfills/https.ts')
-rw-r--r-- | ext/node/polyfills/https.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/node/polyfills/https.ts b/ext/node/polyfills/https.ts index 7b9b0003d..a64e8265a 100644 --- a/ext/node/polyfills/https.ts +++ b/ext/node/polyfills/https.ts @@ -1,15 +1,15 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // Copyright Joyent and Node contributors. All rights reserved. MIT license. -import { notImplemented } from "internal:deno_node/_utils.ts"; -import { urlToHttpOptions } from "internal:deno_node/internal/url.ts"; +import { notImplemented } from "ext:deno_node/_utils.ts"; +import { urlToHttpOptions } from "ext:deno_node/internal/url.ts"; import { Agent as HttpAgent, ClientRequest, IncomingMessageForClient as IncomingMessage, type RequestOptions, -} from "internal:deno_node/http.ts"; -import type { Socket } from "internal:deno_node/net.ts"; +} from "ext:deno_node/http.ts"; +import type { Socket } from "ext:deno_node/net.ts"; export class Agent extends HttpAgent { } |