Merge pull request #49420 from thaJeztah/client_remove_serverResponse

client: remove serverResponse and use http.Response directly
This commit is contained in:
Sebastiaan van Stijn
2025-02-14 16:40:38 +01:00
committed by GitHub
72 changed files with 259 additions and 243 deletions

View File

@@ -37,5 +37,5 @@ func (cli *Client) ImageSave(ctx context.Context, imageIDs []string, saveOpts ..
if err != nil {
return nil, err
}
return resp.body, nil
return resp.Body, nil
}