1
2
3
4
5
6
7
8
9
10
11
12
pub mod error;
pub mod result;

cfg_if::cfg_if! {
    if #[cfg(target_arch = "wasm32")] {
        mod wasm;
        pub use wasm::*;
    } else {
        mod native;
        pub use native::*;
    }
}