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