github.com/mithrandie/csvq@v1.18.1/lib/terminal/terminal_functions_windows.go (about) 1 //go:build windows 2 3 package terminal 4 5 import ( 6 "io" 7 8 "github.com/mithrandie/readline-csvq" 9 ) 10 11 func GetStdinForREPL() io.ReadCloser { 12 return readline.NewRawReader() 13 }