aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/aws/aws-sdk-go/internal/sdkio/io_go1.6.go
blob: 5aa9137e0f9363875e798a0f915072144a1561f2 (plain)
1
2
3
4
5
6
7
8
9
10
// +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
)