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