cross_storage/target/native/mod.rs
1pub mod providers;
2pub use providers::*;
3
4pub mod shared;
5pub use shared::*;
6
7#[cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))]
8pub mod desktop;
9#[cfg(any(target_os = "macos", target_os = "linux", target_os = "windows"))]
10pub use desktop::*;
11
12#[cfg(any(target_os = "android", target_os = "ios"))]
13pub mod mobile;
14#[cfg(any(target_os = "android", target_os = "ios"))]
15pub use mobile::*;