| 13 | const IssuesURL = "https://api.github.com/search/issues" |
| 14 | |
| 15 | type IssuesSearchResult struct { |
| 16 | TotalCount int `json:"total_count"` |
| 17 | Items []*Issue |
| 18 | } |
| 19 | |
| 20 | type Issue struct { |
| 21 | Number int |
nothing calls this directly
no outgoing calls
no test coverage detected