garage/src/api/lib.rs

18 lines
329 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;
2020-11-08 14:04:30 +00:00
2021-03-26 21:32:09 +00:00
mod encoding;
2022-04-13 15:35:40 +00:00
mod generic_server;
pub mod helpers;
mod router_macros;
/// This mode is public only to help testing. Don't expect stability here
pub mod signature;
2021-03-26 21:32:09 +00:00
2022-05-09 09:10:50 +00:00
#[cfg(feature = "k2v")]
pub mod k2v;
pub mod s3;