(client *http.Client, repo ghrepo.Interface, app shared.App)
| 284 | } |
| 285 | |
| 286 | func getRepoSecrets(client *http.Client, repo ghrepo.Interface, app shared.App) ([]Secret, error) { |
| 287 | return getSecrets(client, repo.RepoHost(), fmt.Sprintf("repos/%s/%s/secrets", ghrepo.FullName(repo), app)) |
| 288 | } |
| 289 | |
| 290 | func getSecrets(client *http.Client, host, path string) ([]Secret, error) { |
| 291 | var results []Secret |
no test coverage detected