aditya.siregar c9f1e33c24 Add Infra
2025-03-03 18:59:25 +07:00

14 lines
320 B
Go

//go:build go1.7
// +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
)