leptos_workers/workers/mod.rs
1//! This module contains all the available flavours of workers.
2
3mod callback_worker;
4mod channel_worker;
5mod future_worker;
6mod stream_worker;
7mod web_worker;
8
9pub use callback_worker::*;
10pub use channel_worker::*;
11pub use future_worker::*;
12pub use stream_worker::*;
13pub use web_worker::*;