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>
11 lines
271 B
Go
11 lines
271 B
Go
//go:build !go1.7
|
|
// +build !go1.7
|
|
|
|
package sdkio
|
|
|
|
// Copy of Go 1.7 io package's Seeker constants.
|
|
const (
|
|
SeekStart = 0 // seek relative to the origin of the file
|
|
SeekCurrent = 1 // seek relative to the current offset
|
|
SeekEnd = 2 // seek relative to the end
|
|
)
|