Skip to main content

objectstore_client/
lib.rs

1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3#![warn(missing_debug_implementations)]
4
5mod auth;
6mod client;
7mod delete;
8mod error;
9mod get;
10mod head;
11mod key;
12mod many;
13#[cfg(feature = "multipart")]
14mod multipart;
15mod put;
16pub mod utils;
17
18pub use objectstore_types::metadata::{Compression, ExpirationPolicy};
19
20pub use auth::*;
21pub use client::*;
22pub use delete::*;
23pub use error::*;
24pub use get::*;
25pub use head::*;
26pub use key::*;
27pub use many::*;
28#[cfg(feature = "multipart")]
29pub use multipart::*;
30pub use put::*;