Update docs

This commit is contained in:
2025-05-22 19:24:11 +02:00
parent ca8f4aecb1
commit 8dc577c725
7 changed files with 50 additions and 7 deletions

View File

@@ -1,3 +1,12 @@
//! This module serves as the configuration layer for the application.
//!
//! It is divided into submodules:
//! - `env`: Handles environment-specific configuration, such as reading
//! environment variables or setting up runtime parameters.
//! - `types`: Defines shared types and structures used for configuration.
//!
//! The module re-exports items from its submodules for easier access.
pub mod env;
pub mod types;