1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4pub mod console;
5pub mod detection;
6pub mod theme;
7
8pub mod banner; pub mod client; pub mod status; pub mod diagnostics; pub mod error; pub mod handlers; pub mod logging; pub mod stats; pub mod tables; pub mod testing; pub use console::console;
22pub mod config;
23
24pub use client::RequestResponseRenderer;
25pub use config::ConsoleConfig;
26pub use detection::{DisplayContext, is_agent_context, should_enable_rich};
27pub use error::ErrorBoundary;
28pub use handlers::{HandlerRegistryRenderer, ServerCapabilities};
29pub use rich_rust;
30pub use theme::theme;