forked from TrueCloudLab/distribution
81a2d171ee
Upgrade the aws golang SDK to 1.42.27 to add the new options for configuring S3 dualstack endpoints. Signed-off-by: Adam Kaplan <adam.kaplan@redhat.com>
12 lines
302 B
Go
12 lines
302 B
Go
//go:build go1.9
|
|
// +build go1.9
|
|
|
|
package aws
|
|
|
|
import "context"
|
|
|
|
// Context is an alias of the Go stdlib's context.Context interface.
|
|
// It can be used within the SDK's API operation "WithContext" methods.
|
|
//
|
|
// See https://golang.org/pkg/context on how to use contexts.
|
|
type Context = context.Context
|