1use super::*; 2 3#[cfg(target_arch = "wasm32")] 4#[path = "web.rs"] 5mod _impl; 6 7#[cfg(not(target_arch = "wasm32"))] 8#[path = "native.rs"] 9mod _impl; 10 11pub use _impl::*;