aboutsummaryrefslogtreecommitdiffstats
path: root/src/config/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/mod.rs')
-rw-r--r--src/config/mod.rs11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/config/mod.rs b/src/config/mod.rs
index c5fc004..066154a 100644
--- a/src/config/mod.rs
+++ b/src/config/mod.rs
@@ -1,3 +1,12 @@
1pub mod loader; 1//! Configuration module for the DML launcher.
2//!
3//! This module contains submodules and helpers for loading, parsing, and
4//! managing configuration files and settings. It abstracts the details
5//! of where configuration is stored and how it is represented in memory.
6//!
7//! # Submodules
8//! - `loader`: Functions to load and parse configuration from disk or
9//! environment variables.
2 10
11pub mod loader;
3pub use loader::Config; 12pub use loader::Config;