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 2e932c968..675d428cd 100644 --- a/runtime/js/40_http.js +++ b/runtime/js/40_http.js @@ -1,7 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { core, internals } from "ext:core/mod.js"; +import { op_http_start } from "ext:core/ops"; const { internalRidSymbol } = core; -const { op_http_start } = core.ensureFastOps(); import { HttpConn } from "ext:deno_http/01_http.js"; |