garage_api_common 2.0.0

Common functions for the API server crates for the Garage object store
Documentation
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;