| 101 | /// [`PersistedConfig`]. |
| 102 | #[derive(Debug, Clone)] |
| 103 | pub struct CodSpeedConfig { |
| 104 | persisted: PersistedConfig, |
| 105 | pub auth: AuthConfig, |
| 106 | pub api_url: String, |
| 107 | pub upload_url: String, |
| 108 | selected_profile: String, |
| 109 | } |
| 110 | |
| 111 | fn default_profile_name() -> String { |
| 112 | DEFAULT_PROFILE_NAME.to_owned() |
nothing calls this directly
no outgoing calls
no test coverage detected