You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
garage/src/api/lib.rs

17 lines
329 B

//! Crate for serving a S3 compatible API
#[macro_use]
extern crate tracing;
pub mod error;
pub use error::Error;
mod encoding;
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;
#[cfg(feature = "k2v")]
pub mod k2v;
pub mod s3;