shad-go/externalsort/io.go

12 lines
153 B
Go
Raw Normal View History

// +build !change
package externalsort
type LineReader interface {
ReadLine() (string, error)
}
type LineWriter interface {
Write(l string) error
}