rustack_s3_core/ops/mod.rs
1//! S3 operation handlers.
2//!
3//! This module contains the implementations of all S3 operations, organized
4//! into submodules by category. Each submodule exposes `handle_*` methods
5//! on [`crate::provider::RustackS3`].
6//!
7//! The server binary bridges these handlers to the HTTP layer by implementing
8//! the `S3Handler` trait from `rustack-s3-http`.
9
10pub mod bucket;
11pub mod bucket_config;
12pub mod list;
13pub mod multipart;
14pub mod object;
15pub mod object_config;