use Config;
/// Configuration object with default values.
///
/// It is useful for example to read the configuration of a given file.
///
/// # Example
/// All of the configuration values are set to their default values.
/// ```rust
/// # use fef::v0::config::{DefaultConfig, Config};
/// let config = DefaultConfig::new();
/// ```
/// Default configuration object.
///
/// This is an instance of the [`DefaultConfig`] struct, which can be used instead of creating a new instance.
pub const DEFAULT_CONFIG: DefaultConfig = new;