GitHubSource fetches tasks from GitHub Issues.
| 23 | |
| 24 | // GitHubSource fetches tasks from GitHub Issues. |
| 25 | type GitHubSource struct { |
| 26 | // HTTPClient allows injecting a custom client for testing. Nil uses http.DefaultClient. |
| 27 | HTTPClient *http.Client |
| 28 | } |
| 29 | |
| 30 | func init() { |
| 31 | sync.Register(&GitHubSource{}) |
nothing calls this directly
no outgoing calls
no test coverage detected