mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-02 12:17:39 -06: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)
|
||
|
}
|