Skip to main content

oxidio_web/
lib.rs

1//! Web server for Oxidio.
2//!
3//! Provides an HTTP + WebSocket server that serves the web UI and bridges
4//! browser clients to the control channel. Each WebSocket connection is
5//! just another client of the same message bus that the TUI uses.
6
7mod server;
8mod websocket;
9
10pub use server::{ start_web_server, WebServerHandle };