Skip to main content

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 http_client;
8pub mod metrics;
9pub mod proxy;
10pub mod transform;
11
12mod router;
13pub use builder::ProxyBuilder;
14pub use router::{build_router, build_router_from_config};