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