feat: initial commit
This commit is contained in:
commit
a161b86c9a
705 changed files with 288162 additions and 0 deletions
13
vendor/github.com/charmbracelet/bubbletea/key_other.go
generated
vendored
Normal file
13
vendor/github.com/charmbracelet/bubbletea/key_other.go
generated
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
//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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue