1 2 3 4 5 6 7 8 9 10
//! TUI Configuration Wizard for rmcp_memex //! //! Interactive terminal UI for configuring MCP server and host integrations. mod app; mod host_detection; mod ui; pub use app::{WizardConfig, run_wizard}; pub use host_detection::{HostDetection, HostFormat, HostKind, detect_hosts};