1
0
Fork 0
mirror of https://github.com/Luzifer/share.git synced 2024-10-18 21:34:23 +00:00
share/vendor/github.com/aws/aws-sdk-go/internal/sdkio/io_go1.7.go
Knut Ahlers fc2a166524
Update vendors
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-09-19 12:14:34 +02:00

12 lines
303 B
Go

// +build go1.7
package sdkio
import "io"
// Alias for Go 1.7 io package Seeker constants
const (
SeekStart = io.SeekStart // seek relative to the origin of the file
SeekCurrent = io.SeekCurrent // seek relative to the current offset
SeekEnd = io.SeekEnd // seek relative to the end
)