object_store_wasm/
lib.rs

1#[cfg(feature = "http")]
2pub mod http;
3#[cfg(all(target_arch = "wasm32", feature = "js_binding"))]
4pub mod js_binding;
5pub mod parse;
6pub mod utils;
7#[cfg(feature = "http")]
8pub use http::HttpStore;
9#[cfg(feature = "aws")]
10pub mod aws;
11#[cfg(feature = "aws")]
12pub use aws::AmazonS3;