static mut CONFIG: Option<Config> = None; pub fn config() -> &'static Config { unsafe { if CONFIG.is_none() { CONFIG = Some(load()); } CONFIG.as_ref().unwrap() } }