diff options
Diffstat (limited to 'ext/http/lib.rs')
-rw-r--r-- | ext/http/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/ext/http/lib.rs b/ext/http/lib.rs index a0593de8c..eb7381773 100644 --- a/ext/http/lib.rs +++ b/ext/http/lib.rs @@ -80,10 +80,7 @@ mod reader_stream; pub fn init() -> Extension { Extension::builder(env!("CARGO_PKG_NAME")) .dependencies(vec!["deno_web", "deno_net", "deno_fetch", "deno_websocket"]) - .esm(include_js_files!( - prefix "internal:ext/http", - "01_http.js", - )) + .esm(include_js_files!("01_http.js",)) .ops(vec![ op_http_accept::decl(), op_http_write_headers::decl(), |