All checks were successful
continuous-integration/drone/push Build is passing
See #478
14 lines
204 B
Go
14 lines
204 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package tea
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
)
|
|
|
|
func readInputs(ctx context.Context, msgs chan<- Msg, input io.Reader) error {
|
|
return readAnsiInputs(ctx, msgs, input)
|
|
}
|