xore 1.2.0

XORE CLI - Command-line interface for search and data processing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! UI 组件模块
//!
//! 提供 CLI 输出的各种组件:
//! - `colors`: 颜色方案和样式
//! - `progress`: 进度条和 Spinner
//! - `table`: 表格渲染
//! - `terminal`: 终端检测工具

pub mod colors;
pub mod progress;
pub mod table;
pub mod terminal;

pub use colors::{ICON_INFO, ICON_PENDING, ICON_SUCCESS, ICON_TIP, ICON_WARNING};
pub use table::{Column, Table, TableStyle};