e1464fd317
Fixes https://github.com/docker/distribution/issues/3097 Signed-off-by: Yong Wen Chua <lawliet89@users.noreply.github.com>
11 lines
285 B
Go
11 lines
285 B
Go
// +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
|