diff options
author | Andreu Botella <andreu@andreubotella.com> | 2022-02-15 12:17:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 12:17:30 +0100 |
commit | 760f4c9e2427e87815a8e59b0807693c8dcb623a (patch) | |
tree | cb04b2b42cfcf1fc46d74a3e4c7f86c73491d2b0 /runtime/worker.rs | |
parent | 5e845442fade02cd12d13e74222b26e217c5971d (diff) |
chore(ext/timers): move ext/timers to ext/web (#13665)
Diffstat (limited to 'runtime/worker.rs')
-rw-r--r-- | runtime/worker.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/worker.rs b/runtime/worker.rs index 1dc9504d6..1e31b84dc 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -100,7 +100,7 @@ impl MainWorker { deno_webidl::init(), deno_console::init(), deno_url::init(), - deno_web::init( + deno_web::init::<Permissions>( options.blob_store.clone(), options.bootstrap.location.clone(), ), @@ -122,7 +122,6 @@ impl MainWorker { deno_crypto::init(options.seed), deno_broadcast_channel::init(options.broadcast_channel.clone(), unstable), deno_webgpu::init(unstable), - deno_timers::init::<Permissions>(), // ffi deno_ffi::init::<Permissions>(unstable), // Runtime ops |