| 130 | |
| 131 | #[derive(Debug, Serialize, Deserialize)] |
| 132 | pub struct RepositoryInfo { |
| 133 | #[serde(rename = "type")] |
| 134 | pub repo_type: String, |
| 135 | pub url: String, |
| 136 | #[serde(rename = "ref")] |
| 137 | pub git_ref: String, |
| 138 | pub sha: String, |
| 139 | } |
| 140 | |
| 141 | #[derive(Debug, Serialize, Deserialize)] |
| 142 | pub struct PlatformInfo { |
nothing calls this directly
no outgoing calls
no test coverage detected