(cli common.GithubClient)
| 29 | ) |
| 30 | |
| 31 | func NewClient(cli common.GithubClient) (*ScaleSetClient, error) { |
| 32 | return &ScaleSetClient{ |
| 33 | ghCli: cli, |
| 34 | httpClient: &http.Client{}, |
| 35 | }, nil |
| 36 | } |
| 37 | |
| 38 | type ScaleSetClient struct { |
| 39 | ghCli common.GithubClient |
no outgoing calls
no test coverage detected