//! Configuration file structures (with serde-derived parser)
use ProviderConfig;
pub use *;
/// Name of the KMS configuration file
pub const CONFIG_FILE_NAME: &str = "tmkms.toml";
/// KMS configuration (i.e. TOML file parsed with serde)
// Impl the `abscissa::GlobalConfig` trait, storing the configuration in the
// `GLOBAL_CONFIG` static value
impl_global_config!;