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.

8 lines
217 B
Rust

//! 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;