mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-12 16:00:25 -04:00
10 lines
141 B
Go
10 lines
141 B
Go
// +build windows
|
|
|
|
package readline
|
|
|
|
func init() {
|
|
Stdin = NewRawReader()
|
|
Stdout = NewANSIWriter(Stdout)
|
|
Stderr = NewANSIWriter(Stderr)
|
|
}
|