shardline-server 1.0.1

HTTP server boundary, runtime, and operator workflows for Shardline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub use self::index::IndexError;
pub use self::object_store::ObjectStoreError;
pub(crate) use self::oci::OciError;
pub use self::server::ServerError;
#[cfg(any(test, feature = "fuzzing"))]
pub use shardline_server_core::InvalidReconstructionResponseError;
pub use shardline_server_core::InvalidSerializedShardError;

mod body;
mod index;
mod object_store;
mod oci;
mod server;

#[cfg(test)]
mod tests;