All checks were successful
continuous-integration/drone/push Build is passing
See #478
15 lines
220 B
Go
15 lines
220 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package tea
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/muesli/cancelreader"
|
|
)
|
|
|
|
func newInputReader(r io.Reader, _ bool) (cancelreader.CancelReader, error) {
|
|
return cancelreader.NewReader(r)
|
|
}
|