Skip to main content

featherbit/server/
mod.rs

1//! Data-plane HTTP server: accepts client connections, matches routes, and
2//! runs the matched policy graph for each request.
3
4pub mod listener;
5pub mod tls;
6pub mod websocket;
7
8pub use listener::start_server;