github.com/aavshr/aws-sdk-go@v1.41.3/internal/sdkio/io_go1.6.go (about)

     1  //go:build !go1.7
     2  // +build !go1.7
     3  
     4  package sdkio
     5  
     6  // Copy of Go 1.7 io package's Seeker constants.
     7  const (
     8  	SeekStart   = 0 // seek relative to the origin of the file
     9  	SeekCurrent = 1 // seek relative to the current offset
    10  	SeekEnd     = 2 // seek relative to the end
    11  )