// SPDX-License-Identifier: MIT OR Apache-2.0
//! Domain layer containing core business logic and types.
//!
//! This module contains the core domain types and logic for the configuration crate.
//! It is independent of any external concerns and defines the fundamental concepts
//! used throughout the library.
// Re-export commonly used types
pub use ConfigKey;
pub use ConfigValue;
pub use ;
pub use ConfigurationService;