systemprompt_logging/services/cli/
mod.rs1pub mod display;
2mod macros;
3pub mod module;
4pub mod prompts;
5mod service;
6pub mod startup;
7pub mod summary;
8pub mod table;
9pub mod theme;
10mod types;
11
12pub use display::{CollectionDisplay, Display, DisplayUtils, ModuleItemDisplay, StatusDisplay};
13pub use module::{BatchModuleOperations, ModuleDisplay, ModuleInstall, ModuleUpdate};
14pub use prompts::{PromptBuilder, Prompts, QuickPrompts};
15pub use service::CliService;
16pub use startup::{
17 render_phase_header, render_phase_info, render_phase_success, render_phase_warning,
18 render_startup_banner,
19};
20pub use summary::{OperationResult, ProgressSummary, ValidationSummary};
21pub use table::{render_service_table, render_startup_complete, render_table, ServiceTableEntry};
22pub use theme::{
23 ActionType, BrandColors, ColorType, Colors, EmphasisType, IconType, Icons, ItemStatus,
24 MessageLevel, ModuleType, ServiceStatus, Theme,
25};
26
27use super::output;