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

pub mod common_error;

pub mod encoding;
pub mod generic_server;
pub mod helpers;
pub mod router_macros;
/// This mode is public only to help testing. Don't expect stability here
pub mod signature;