mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-08-16 00:43:11 +00:00
6c0bb1c9b6
move these defnitions to garage_api_common so that they can also be used in admin api
14 lines
229 B
Rust
14 lines
229 B
Rust
//! 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;
|
|
pub mod xml;
|