shad-go/externalsort/io.go
2022-03-15 23:49:56 +03:00

11 lines
154 B
Go

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