(entityID string, client common.GithubClient)
| 59 | } |
| 60 | |
| 61 | func SetGithubClient(entityID string, client common.GithubClient) { |
| 62 | ghClientCache.SetClient(entityID, client) |
| 63 | } |
| 64 | |
| 65 | func GetGithubClient(entityID string) (common.GithubClient, bool) { |
| 66 | return ghClientCache.GetClient(entityID) |
no test coverage detected