Skip to main content

hexz_cli/ui/
mod.rs

1//! User interface utilities for the Hexz CLI.
2//!
3//! This module provides consistent, reusable UI components for command-line
4//! interactions, including progress bars, spinners, and formatted output.
5//!
6//! # Design Principles
7//!
8//! - **Consistency**: All commands use standardized progress indicators
9//! - **Accessibility**: Clear visual feedback for long-running operations
10//! - **Silent Mode**: UI components respect `--silent` flags
11//!
12//! # Available Components
13//!
14//! - [`progress`]: Progress bars and spinners for operation feedback
15
16pub mod progress;