| 18 | } |
| 19 | |
| 20 | type Issue struct { |
| 21 | Number int |
| 22 | HTMLURL string `json:"html_url"` |
| 23 | Title string |
| 24 | State string |
| 25 | User *User |
| 26 | CreatedAt time.Time `json:"created_at"` |
| 27 | Body string // in Markdown format |
| 28 | } |
| 29 | |
| 30 | type User struct { |
| 31 | Login string |
nothing calls this directly
no outgoing calls
no test coverage detected