// Copyright © 2024 Stephan Kunz
//! Library for configuration
//!
// flatten
pub use Config;
pub use Error;
// region: --- types
extern crate alloc;
/// copy of Result type alias from `dimas_core` to avoid dependency
pub type Result<T> =
Result;
// endregion: --- types