1 2 3 4 5 6 7 8 9 10 11 12 13
//! HTTP chat API module wiring [`openapi.yaml`](../../../openapi.yaml) `/chat/*` routes. pub mod auth; mod auth_logging; pub mod routes; pub mod runtime; use actix_web::web; /// Registers all `/chat/*` Actix handlers on `cfg`. pub fn services(cfg: &mut web::ServiceConfig) { routes::services(cfg); }