You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
//! TUI module — terminal user interface for claudbg.
|
|
//!
|
|
//! - [`state`] — application state model (pure data, no I/O)
|
|
//! - [`run`] — terminal setup, main event loop, and teardown
|
|
|
|
pub mod run;
|
|
pub mod state;
|