systemprompt_cli/presentation/mod.rs
1//! Terminal presentation widgets.
2//!
3//! Live rendering of the service-startup sequence ([`StartupRenderer`] is the
4//! entry point; its state and widgets are internal) plus the shared [`tables`]
5//! widgets that shape command records into rendered `tabled` output.
6
7mod renderer;
8mod state;
9pub mod tables;
10mod widgets;
11
12pub use renderer::StartupRenderer;