wactorz_interfaces/lib.rs
1//! # wactorz-interfaces
2//!
3//! Human and machine interfaces for AgentFlow.
4//!
5//! - [`cli`] — interactive REPL / command-line interface
6//! - [`rest`] — axum HTTP REST API
7//! - [`ws`] — WebSocket bridge: MQTT ↔ browser clients (for the Babylon.js dashboard)
8
9pub mod cli;
10pub mod rest;
11pub mod ws;
12
13pub use rest::RestServer;
14pub use ws::WsBridge;