Skip to main content

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//!
7//! Copyright (c) systemprompt.io — Business Source License 1.1.
8//! See <https://systemprompt.io> for licensing details.
9
10mod renderer;
11mod state;
12pub mod tables;
13mod widgets;
14
15pub use renderer::StartupRenderer;