(ctx context.Context, apiClient client.APIClient, imageName string)
| 144 | } |
| 145 | |
| 146 | func checkLocalImageExistence(ctx context.Context, apiClient client.APIClient, imageName string) error { |
| 147 | _, err := apiClient.ImageInspect(ctx, imageName) |
| 148 | return err |
| 149 | } |
| 150 | |
| 151 | func createTarget(notaryRepo notaryclient.Repository, tag string) (notaryclient.Target, error) { |
| 152 | target := ¬aryclient.Target{} |
no test coverage detected
searching dependent graphs…