Skip to main content

ui_cli/
lib.rs

1// Library interface for ui-cli
2// This allows integration tests and external consumers to access shared functionality
3
4pub mod shared {
5    pub mod cli_error;
6    pub mod markdown_utils;
7    pub mod rust_ui_client;
8    pub mod task_spinner;
9}