synapse_proxy/lib.rs
1//! synapse-proxy library surface (used by the binary and integration tests).
2pub mod admin;
3pub mod builder;
4pub mod config;
5pub mod context;
6pub mod health;
7pub mod metrics;
8pub mod proxy;
9pub mod transform;
10
11mod router;
12pub use builder::ProxyBuilder;
13pub use router::{build_router, build_router_from_config};