osbuild-uploadgeneric-s3: remove aws sdk v1 dependency

This commit is contained in:
Sanne Raymaekers 2024-08-06 15:32:30 +02:00
parent cda0db91f5
commit 990ed6a9ad

View file

@ -5,8 +5,6 @@ import (
"fmt"
"os"
"github.com/aws/aws-sdk-go/aws"
"github.com/osbuild/osbuild-composer/internal/cloud/awscloud"
)
@ -55,5 +53,5 @@ func main() {
}
}
fmt.Printf("file uploaded to %s\n", aws.StringValue(&uploadOutput.Location))
fmt.Printf("file uploaded to %s\n", uploadOutput.Location)
}