io_go1.7.go 320 B

12345678910111213
  1. //go:build go1.7
  2. // +build go1.7
  3. package sdkio
  4. import "io"
  5. // Alias for Go 1.7 io package Seeker constants
  6. const (
  7. SeekStart = io.SeekStart // seek relative to the origin of the file
  8. SeekCurrent = io.SeekCurrent // seek relative to the current offset
  9. SeekEnd = io.SeekEnd // seek relative to the end
  10. )