(
env: &mut Vec<serde_json::Value>,
values: &std::collections::HashMap<String, String>,
)
| 1986 | } |
| 1987 | |
| 1988 | fn apply_env_map( |
| 1989 | env: &mut Vec<serde_json::Value>, |
| 1990 | values: &std::collections::HashMap<String, String>, |
| 1991 | ) { |
| 1992 | for (key, value) in values { |
| 1993 | upsert_env(env, key, value); |
| 1994 | } |
| 1995 | } |
| 1996 | |
| 1997 | // Required env vars are passed individually for clarity at call sites; grouping into a struct |
| 1998 | // would not improve readability for this internal helper. |
no test coverage detected