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
6pub mod auth;
7pub mod cli;
8pub mod config;
9pub mod endpoints;
10pub mod error;
11pub mod healthcheck;
12pub mod http;
13pub mod observability;
14pub mod state;