aboutsummaryrefslogtreecommitdiff
path: root/src/api/s3/lib.rs
blob: 4d1d3ef5836310c25947da52713d19bd5afc1e49 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#[macro_use]
extern crate tracing;

pub mod api_server;
pub mod error;

mod bucket;
mod copy;
pub mod cors;
mod delete;
pub mod get;
mod lifecycle;
mod list;
mod multipart;
mod post_object;
mod put;
mod website;

mod encryption;
mod router;
pub mod xml;