| 31 | |
| 32 | #[derive(Deserialize, Default)] |
| 33 | struct IOSConfig { |
| 34 | device_name: Option<String>, |
| 35 | ios_version: Option<String>, |
| 36 | #[serde(skip)] |
| 37 | _runtime: Option<String>, // Changed to _runtime to indicate intentionally unused |
| 38 | } |
| 39 | |
| 40 | #[derive(Deserialize, Default)] |
| 41 | struct AndroidConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected