this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 8 lines 148 B view raw
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}