twink/vendor/github.com/charmbracelet/bubbletea/key_other.go
2025-12-05 12:20:05 +01:00

13 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)
}