philharmonic_connector_router/lib.rs
1//! Per-realm HTTP dispatcher for connector-service upstreams.
2
3mod config;
4mod dispatch;
5
6pub use config::{DispatchConfig, DispatchConfigError};
7pub use dispatch::{
8 ForwardError, ForwardFuture, Forwarder, HyperForwarder, RouterState, dispatch_by_host,
9 dispatch_by_path, dispatch_to_realm, router,
10};