indexbus_platform_config/
prelude.rs

1//! Curated prelude for platform config.
2//!
3//! This module re-exports commonly used types and helpers from this crate.
4//!
5//! **Stability note**: the prelude is a convenience API; prefer importing specific items in
6//! libraries to reduce the chance of breaking changes.
7
8pub use crate::config::{AppConfig, ConfigSource, ConfigStack};
9pub use crate::errors::{Error, Result};
10pub use crate::kv::{load_env_prefix, load_kv_file, merge_into, ConfigMap};