objectstore_server/
lib.rs

1//! The storage server component.
2//!
3//! This builds on top of the [`objectstore_service`], and exposes the underlying storage layer as
4//! an `HTTP` layer which can serve files directly to *external clients* and our SDK.
5#![warn(missing_debug_implementations)]
6
7pub mod auth;
8pub mod batch;
9pub mod cli;
10pub mod config;
11pub mod endpoints;
12pub mod extractors;
13pub mod healthcheck;
14pub mod killswitches;
15pub mod multipart;
16pub mod observability;
17pub mod rate_limits;
18pub mod state;
19pub mod web;