| 6 | #[derive(Clone, Debug, Deserialize)] |
| 7 | #[serde(rename_all = "camelCase")] |
| 8 | pub struct Project { |
| 9 | pub levels: Vec<Level>, |
| 10 | pub defs: Defs, |
| 11 | } |
| 12 | |
| 13 | impl Project { |
| 14 | pub fn from_file(path: impl AsRef<Path>) -> Project { |
nothing calls this directly
no outgoing calls
no test coverage detected