1 2 3 4 5 6 7 8 9 10
//! Terminal User Interface (TUI) for Kandil Code //! //! Contains the implementation for the interactive studio //! This implements Phase 3: TUI Studio & Code Understanding pub mod studio; pub mod widgets; pub mod events; pub use studio::StudioApp;