Skip to main content

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