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::{calculate_dir_size, parse_size};