| 17 | |
| 18 | #[derive(Deserialize)] |
| 19 | struct ProjectConfig { |
| 20 | name: String, |
| 21 | target_platforms: Vec<Platform>, |
| 22 | #[serde(default)] |
| 23 | build_command: Option<String>, |
| 24 | #[serde(default)] |
| 25 | ios_config: IOSConfig, |
| 26 | #[serde(default)] |
| 27 | android_config: AndroidConfig, |
| 28 | #[serde(default)] |
| 29 | web_config: WebConfig, |
| 30 | } |
| 31 | |
| 32 | #[derive(Deserialize, Default)] |
| 33 | struct IOSConfig { |
nothing calls this directly
no outgoing calls
no test coverage detected