aboutsummaryrefslogblamecommitdiff
path: root/src/api/lib.rs
blob: 370dfd7aa112f48ec42b5a3b95e87da84bc5aca0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                         
            
                     
 
                     
 
             
                       

                  

                                                                         
 
              


                       
//! Crate for serving a S3 compatible API
#[macro_use]
extern crate tracing;

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