shad-go/externalsort/io.go
2022-02-10 22:06:57 +00:00

12 lines
172 B
Go

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