diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-03-05 08:19:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-05 12:19:34 +0000 |
commit | de0d148d933520e7ee519576c83e4ca282ee9021 (patch) | |
tree | d54f8fd691691ef5df08b61d3c558273f08bcab8 /runtime/ops/mod.rs | |
parent | d4807f458e852e6a8385a852e7caf9dd4a5b54f7 (diff) |
refactor(runtime): merge "spawn" into "process" (#18022)
This commit merges "runtime/js/40_spawn.js" into
"runtime/js/40_process.js", and "runtime::ops::spawn"
into "runtime::ops::process".
It makes little sense to have them separated given that we want to
factor out these APIs into a separate extension crate.
Diffstat (limited to 'runtime/ops/mod.rs')
-rw-r--r-- | runtime/ops/mod.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs index 0564474b1..48c22ca92 100644 --- a/runtime/ops/mod.rs +++ b/runtime/ops/mod.rs @@ -8,7 +8,6 @@ pub mod permissions; pub mod process; pub mod runtime; pub mod signal; -pub mod spawn; pub mod tty; mod utils; pub mod web_worker; |