//! Configuration module for the DML launcher. //! //! This module contains submodules and helpers for loading, parsing, and //! managing configuration files and settings. It abstracts the details //! of where configuration is stored and how it is represented in memory. //! //! # Submodules //! - `loader`: Functions to load and parse configuration from disk or //! environment variables. pub mod loader; pub use loader::Config;