Skip to main content

systemprompt_cli/presentation/
mod.rs

1//! Live terminal rendering of the service-startup sequence.
2//!
3//! Consumes the startup event stream and drives spinners, a service table, and
4//! completion messaging. [`StartupRenderer`] is the entry point; rendering
5//! state and individual widgets are internal.
6
7mod renderer;
8mod state;
9mod widgets;
10
11pub use renderer::StartupRenderer;