//! Utility module for the DML launcher. //! //! This module contains general-purpose helper functions used throughout //! the project. It is designed to provide reusable functionality without //! being specific to Minecraft or configuration. //! //! # Submodules //! - `fs`: File system utilities such as safe file creation, reading, and //! writing. //! - `sha1`: Functions to compute SHA-1 hashes for files and data integrity //! checks. pub mod fs; pub mod sha1;