Client wraps GitHub client with some additional
| 38 | |
| 39 | // Client wraps GitHub client with some additional |
| 40 | type Client struct { |
| 41 | *github.Client |
| 42 | regTokens map[string]*github.RegistrationToken |
| 43 | mu sync.Mutex |
| 44 | // GithubBaseURL to Github without API suffix. |
| 45 | GithubBaseURL string |
| 46 | IsEnterprise bool |
| 47 | } |
| 48 | |
| 49 | type BasicAuthTransport struct { |
| 50 | Username string |
nothing calls this directly
no outgoing calls
no test coverage detected