summaryrefslogtreecommitdiff
path: root/runtime/lib.rs
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@gmail.com>2021-10-05 22:41:14 +0200
committerGitHub <noreply@github.com>2021-10-05 22:41:14 +0200
commit678a881f63ee8e3b86d4dc539234a78c94cc9c1e (patch)
tree312c72895dca58d360e5d932e72f47f0fcb54be9 /runtime/lib.rs
parent77a00ce1fb4ae2523e22b9b84ae09a0200502e38 (diff)
refactor(runtime): Worker bootstrap options (#12299)
Diffstat (limited to 'runtime/lib.rs')
-rw-r--r--runtime/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/lib.rs b/runtime/lib.rs
index 37d48def1..e89e4a27b 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -27,3 +27,6 @@ pub mod permissions;
pub mod tokio_util;
pub mod web_worker;
pub mod worker;
+
+mod worker_bootstrap;
+pub use worker_bootstrap::BootstrapOptions;