GitHubATProvider implements the Provider interface using GitHub's device flow
| 42 | |
| 43 | // GitHubATProvider implements the Provider interface using GitHub's device flow |
| 44 | type GitHubATProvider struct { |
| 45 | clientID string |
| 46 | registryURL string |
| 47 | providedToken string // Token provided via --token flag or MCP_GITHUB_TOKEN env var |
| 48 | githubToken string // In-memory GitHub token set by Login() |
| 49 | } |
| 50 | |
| 51 | // ServerHealthResponse represents the response from the health endpoint |
| 52 | type ServerHealthResponse struct { |
nothing calls this directly
no outgoing calls
no test coverage detected