mirror of
https://github.com/rclone/rclone.git
synced 2025-12-31 07:33:33 +00:00
14 lines
359 B
Go
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
|