summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorSatya Rohith <me@satyarohith.com>2021-04-20 19:56:31 +0530
committerGitHub <noreply@github.com>2021-04-20 16:26:31 +0200
commit15ffdd2624108f99960fc2da86e4f751e32bfd16 (patch)
tree2817ea0ad87a2fc3148380e4ee298e1fd1cc9cc3 /runtime
parent9e6cd91014ac4a0d34556b0d09cbe25e4e0930c6 (diff)
fix(runtime): include HTTP op in WebWorker (#10207)
Diffstat (limited to 'runtime')
-rw-r--r--runtime/web_worker.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs
index 8c8761d62..57c3909e1 100644
--- a/runtime/web_worker.rs
+++ b/runtime/web_worker.rs
@@ -261,6 +261,7 @@ impl WebWorker {
ops::fs::init(js_runtime);
ops::net::init(js_runtime);
ops::os::init(js_runtime);
+ ops::http::init(js_runtime);
ops::permissions::init(js_runtime);
ops::plugin::init(js_runtime);
ops::process::init(js_runtime);