aboutsummaryrefslogtreecommitdiff
path: root/src/api/common/lib.rs
blob: 0e655a53b7c19e496c5128ed9998dec21f0aa614 (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 cors;
pub mod encoding;
pub mod generic_server;
pub mod helpers;
pub mod router_macros;
pub mod signature;