ckb_async_runtime/lib.rs
1//! Utilities for tokio runtime.
2
3pub use tokio;
4pub use tokio::runtime::Runtime;
5
6#[cfg(not(target_family = "wasm"))]
7pub use native::*;
8
9#[cfg(target_family = "wasm")]
10pub use browser::*;
11
12#[cfg(target_family = "wasm")]
13mod browser;
14#[cfg(not(target_family = "wasm"))]
15mod native;