hexcfg 1.1.4

A hexagonal architecture configuration loading crate with multi-source support
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Service layer containing the configuration service implementations.
//!
//! This module contains the concrete implementations of the `ConfigurationService`
//! trait, which provides the main interface for accessing configuration values.

pub mod default_service;

// Re-export commonly used types
pub use default_service::{ConfigurationServiceBuilder, DefaultConfigService};