Skip to main content

object_storage_proxy/utils/
mod.rs

1//! Utility helpers shared across the proxy.
2//!
3//! Sub-modules:
4//! * [`banner`] — startup banner.
5//! * [`functions`] — Python introspection helpers.
6//! * [`response`] — helpers for writing HTTP error responses.
7//! * [`validator`] — authorization cache and Python validator bridge.
8
9pub mod banner;
10pub mod functions;
11pub mod response;
12pub mod validator;