Select the types of activity you want to include in your feed.
1import envoy 2 3pub fn get_env_var(env: String, default: String) -> String { 4 case envoy.get(env) { 5 Error(_) -> default 6 Ok(val) -> val 7 } 8}