gitai/tui/mod.rs
1//! TUI module
2//!
3//! This module contains the TUI (Text User Interface) implementation.
4//! It provides an interactive interface for users to generate and manage commit messages.
5
6mod app;
7mod input_handler;
8mod spinner;
9mod state;
10mod ui;
11
12pub use app::TuiCommit;
13pub use app::run_tui_commit;