//! Gateway: shared dispatch spine (`GatewayDispatch`) and error mapping. //! //! The 5 fixed gateway endpoints (`/search`, `/schema`, `/call`, `/batch`, //! `/subscribe`) are the sole HTTP invoke path (ADR-042/047). See //! `docs/architecture/crates/http/http-server.md`. pub mod dispatch; pub mod error; pub use dispatch::GatewayDispatch;