(&self, key: &str)
| 133 | pub struct StdEnv; |
| 134 | impl EnvLookup for StdEnv { |
| 135 | fn var(&self, key: &str) -> Option<String> { |
| 136 | std::env::var(key).ok() |
| 137 | } |
| 138 | } |
| 139 | |
| 140 | /// Shape of `~/.local/state/atomic/install.json` as written by install.sh. |
no test coverage detected