hyphae-server 0.1.0

Secure loopback-first HTTP server for the Hyphae data engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0

//! Secure loopback-first HTTP delivery for public versioned contracts.
//!
//! Opening the embedded engine does not start a listener. Callers explicitly
//! construct [`HyphaeServer`], bind it, and provide a graceful-shutdown future.

mod config;
mod error;
mod server;

pub use config::{BearerToken, DEFAULT_PORT, ServerConfig, ServerConfigError, ServerLimits};
pub use error::ServerError;
pub use server::{BoundServer, HyphaeServer};

use error::ApiError;