1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17//! HTTP/WebSocket API server for the OpenFang Agent OS daemon. //! //! Exposes agent management, status, and chat via JSON REST endpoints. //! The kernel runs in-process; the CLI connects over HTTP. pub mod channel_bridge; pub mod middleware; pub mod openai_compat; pub mod rate_limiter; pub mod routes; pub mod server; pub mod stream_chunker; pub mod stream_dedup; pub mod types; pub mod webchat; pub mod ws;