ralph_workflow/common/mod.rs
1//! Common utility functions shared across the crate.
2//!
3//! This module provides utility functions that are used throughout the codebase:
4//! - Shell command parsing
5//! - Text truncation for display
6//! - Secret redaction for logging
7//! - External tool detection
8
9pub mod utils;
10
11// Re-export commonly used utility functions
12pub use utils::{format_argv_for_log, split_command, truncate_text};