# Example of usage ```rust use serde::{Deserialize, Serialize}; pub const DEFAULT_CONFIG: &str = include_str!("../config.yaml"); #[derive(Clone, Debug, Serialize, Deserialize)] pub struct Config { pub port: u16, pub dry_run_mode: bool } impl Config { pub fn load() -> Result { pepe_config::load(DEFAULT_CONFIG, pepe_config::FileFormat::Yaml) } } ```