Skip to main content

zero_tui/
lib.rs

1//! ratatui application — shell, status bar, prompt, conversation,
2//! live-stream pane, and the widget library.
3//!
4//! The application owns nothing business-logical; it is a renderer
5//! over `EngineState` and a dispatcher to `zero-commands`.
6
7#![allow(clippy::module_name_repetitions)]
8
9pub mod app;
10pub mod layout;
11pub mod theme;
12pub mod widgets;
13
14pub use app::{ActiveOverlay, App, AppError, AppExit, AppState, Mode};
15pub use theme::Theme;