aboutsummaryrefslogtreecommitdiff
path: root/src/api/lib.rs
blob: f8165d2aff8b0673f05f7e726070a95ff17fdd03 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Crate for serving a S3 compatible API
#[macro_use]
extern crate tracing;

pub mod error;
pub use error::Error;

mod encoding;
pub 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;

pub mod admin;
#[cfg(feature = "k2v")]
pub mod k2v;
pub mod s3;