mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-07-29 09:18:57 +00:00
13 lines
216 B
Rust
13 lines
216 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;
|