garage/src/api/lib.rs

16 lines
255 B
Rust
Raw Normal View History

2021-03-26 21:32:09 +00:00
//! Crate for serving a S3 compatible API
2020-04-24 10:10:01 +00:00
#[macro_use]
extern crate tracing;
2020-04-24 10:10:01 +00:00
pub mod error;
2021-03-26 21:32:09 +00:00
pub use error::Error;
pub mod helpers;
2020-11-08 14:04:30 +00:00
2021-03-26 21:32:09 +00:00
mod encoding;
2020-04-28 10:18:14 +00:00
/// This mode is public only to help testing. Don't expect stability here
pub mod signature;
2021-03-26 21:32:09 +00:00
pub mod s3;