1pub fn get_path() -> Option<&'static str> { 2 let path = env!("COREPATH"); 3 if path != "none" { 4 Some(path) 5 } else { 6 None 7 } 8}