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
8pub mod utils;
9
10// Re-export commonly used utility functions
11pub use utils::{format_argv_for_log, split_command, truncate_text};