peridot/vendor/github.com/aws/aws-sdk-go/aws/context_1_9.go

13 lines
302 B
Go
Raw Normal View History

2022-11-04 02:21:49 +00:00
//go:build go1.9
2022-07-07 20:11:50 +00:00
// +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