diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-28 12:14:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 12:14:11 +0200 |
commit | 45d4fd44c9444241a898d3075b99e8871fccdd65 (patch) | |
tree | c6ac6bb880023326e935f96d56ef23ba891f92d3 /cli/ops/web_worker.rs | |
parent | 8ceb165e5d1dc0c8d417e42ffc3a26e8f5a62a03 (diff) |
refactor: move op state registration to workers (#7696)
Diffstat (limited to 'cli/ops/web_worker.rs')
-rw-r--r-- | cli/ops/web_worker.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/web_worker.rs b/cli/ops/web_worker.rs index e57edaf6c..42b6a56ce 100644 --- a/cli/ops/web_worker.rs +++ b/cli/ops/web_worker.rs @@ -1,6 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -use crate::web_worker::WebWorkerHandle; +use crate::worker::WebWorkerHandle; use crate::worker::WorkerEvent; use deno_core::futures::channel::mpsc; use deno_core::serde_json::json; |