//! alkhttp: HTTP interface for the alk stack — serves HTTP/1.1 + HTTP/2 on //! standard ALPNs (with WebSocket upgrade carrying the channels protocol) //! and hosts the HTTP-backed call-protocol adapters. pub mod adapters; pub mod client; pub mod gateway; pub mod server; pub mod websocket; pub use server::{decoy_fallback, decoy_method_not_allowed, healthz, DecoyConfig};