| 21 | |
| 22 | #[derive(Deserialize, Debug)] |
| 23 | struct GithubSearchFile { |
| 24 | total_count: u32, |
| 25 | incomplete_results: bool, |
| 26 | items: Vec<GithubSearchFileItem>, |
| 27 | } |
| 28 | |
| 29 | #[derive(Deserialize, Debug)] |
| 30 | struct GithubSearchFileItem { |
nothing calls this directly
no outgoing calls
no test coverage detected