1//! Utility functions and helpers. 2//! 3//! This module contains utility functions used throughout the application, 4//! such as size parsing and formatting helpers. 5 6pub mod size; 7 8pub use size::parse_size;