1pub mod error; 2pub mod notifications; 3pub mod tui; 4 5// Expose the main TUI entry point 6pub use tui::Tui; 7 8// Expose the run functions 9pub use tui::{run_tui, run_tui_auth_setup};