1 2 3 4 5 6 7 8 9
#![doc = include_str!("../README.md")] #![cfg(not(target_arch = "wasm32"))] mod common; mod native; #[cfg(feature = "browser-node")] mod server; pub use common::run;