1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! TUI module for tazuna terminal interface. //! //! Provides ratatui-based UI components for multi-session management. pub mod app; pub mod components; pub mod popup; pub mod status_bar; pub mod tabs; pub mod terminal; pub mod theme; pub mod welcome; #[cfg(test)] pub mod test_utils; pub use app::{AppAction, AppState, TuiApp};