garage/src/api/lib.rs
2022-04-13 17:35:40 +02:00

16 lines
274 B
Rust

//! Crate for serving a S3 compatible API
#[macro_use]
extern crate tracing;
pub mod error;
pub use error::Error;
pub mod helpers;
mod encoding;
mod generic_server;
/// This mode is public only to help testing. Don't expect stability here
pub mod signature;
pub mod s3;