1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-31 07:33:33 +00:00
Files
rclone/vendor/github.com/aws/aws-sdk-go/aws/credentials/context_go1.9.go
2020-02-26 21:26:46 +00:00

14 lines
359 B
Go

// +build go1.9
package credentials
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.
//
// This type, aws.Context, and context.Context are equivalent.
//
// See https://golang.org/pkg/context on how to use contexts.
type Context = context.Context