photoncloud-monorepo/lightningstor/crates/lightningstor-server/src/s3/mod.rs

13 lines
302 B
Rust

//! S3-compatible HTTP API
//!
//! Provides HTTP/REST endpoints compatible with AWS S3 API.
mod auth;
mod router;
mod xml;
pub use auth::{sigv4_auth_middleware, AuthState};
pub use router::{
create_router, create_router_with_auth, create_router_with_auth_config,
create_router_with_state,
};