Skip to main content

systemprompt_logging/services/cli/
mod.rs

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