ran "gofmt -s -w ." to format the code

This commit is contained in:
JupiterRider
2025-08-20 19:41:26 +02:00
committed by André Roth
parent 2d86506183
commit 562820b625
17 changed files with 179 additions and 178 deletions
+1 -1
View File
@@ -108,7 +108,7 @@ func (pool *PackagePool) Open(path string) (aptly.ReadSeekerCloser, error) {
if err != nil {
return nil, errors.Wrap(err, "error creating temporary file for blob download")
}
defer func () { _ = os.Remove(temp.Name()) }()
defer func() { _ = os.Remove(temp.Name()) }()
err = azblob.DownloadBlobToFile(context.Background(), blob, 0, 0, temp, azblob.DownloadFromBlobOptions{})
if err != nil {
+1
View File
@@ -1,6 +1,7 @@
package azure
import (
"bytes"
"context"
"crypto/md5"
"crypto/rand"