diff options
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r-- | runtime/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs index 248ef94de..bc49a2fef 100644 --- a/runtime/lib.rs +++ b/runtime/lib.rs @@ -34,6 +34,8 @@ pub mod web_worker; pub mod worker; mod worker_bootstrap; -pub use worker::runtime; pub use worker_bootstrap::BootstrapOptions; pub use worker_bootstrap::WorkerLogLevel; + +mod shared; +pub use shared::runtime; |