forked from Deuxfleurs/garage
Alex Auvolat
dcfc32cf85
- return XML errors - implement AuthorizationHeaderMalformed error to redirect clients to correct location (used by minio client) - implement GetBucketLocation - fix DeleteObjects XML parsing and response
20 lines
276 B
Rust
20 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;
|