rskit_server/http/mod.rs
1//! HTTP server component: builder, lifecycle, connection serving, TLS, and health routers.
2
3mod builder;
4mod component;
5mod health;
6mod serve;
7mod tls;
8
9#[cfg(test)]
10mod test_support;
11
12pub use builder::HttpServerBuilder;
13pub use component::HttpServer;
14pub use health::{health_router, healthz_router};