io_go1.7.go 303 B

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