diff options
Diffstat (limited to 'runtime/js/40_http.js')
-rw-r--r-- | runtime/js/40_http.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js index 5ee219360..223c7a3e6 100644 --- a/runtime/js/40_http.js +++ b/runtime/js/40_http.js @@ -1,5 +1,5 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -const core = globalThis.Deno.core; +import { core } from "ext:core/mod.js"; const ops = core.ops; import { HttpConn } from "ext:deno_http/01_http.js"; |