1
2
3
4
5
6
7
8
9
10
11
#[cfg(not(target_arch = "wasm32"))]
pub mod file_client_desktop;
#[cfg(not(target_arch = "wasm32"))]
pub use file_client_desktop::*;

#[cfg(target_arch = "wasm32")]
pub mod file_client_wasm;
#[cfg(target_arch = "wasm32")]
pub use file_client_wasm::*;

pub mod file_system;