()
| 73 | |
| 74 | impl Default for PersistedConfig { |
| 75 | fn default() -> Self { |
| 76 | let mut profiles = BTreeMap::new(); |
| 77 | profiles.insert(DEFAULT_PROFILE_NAME.to_owned(), ProfileConfig::default()); |
| 78 | Self { |
| 79 | version: CURRENT_CONFIG_VERSION, |
| 80 | profiles, |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | /// CLI-supplied overrides applied on top of the selected profile when |
nothing calls this directly
no outgoing calls
no test coverage detected