garage/src/api/lib.rs
Alex dcfc32cf85
All checks were successful
continuous-integration/drone/push Build is passing
Many S3 compatibility improvements:
- return XML errors
- implement AuthorizationHeaderMalformed error to redirect clients to
  correct location (used by minio client)
- implement GetBucketLocation
- fix DeleteObjects XML parsing and response
2021-04-28 01:05:40 +02:00

21 lines
276 B
Rust

//! Crate for serving a S3 compatible API
#[macro_use]
extern crate log;
mod error;
pub use error::Error;
mod encoding;
mod api_server;
pub use api_server::run_api_server;
mod signature;
mod s3_bucket;
mod s3_copy;
mod s3_delete;
pub mod s3_get;
mod s3_list;
mod s3_put;