mirror of
https://github.com/containers/podman.git
synced 2025-09-26 08:14:14 +08:00

Add support for short-name aliasing. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
10 lines
141 B
Go
10 lines
141 B
Go
// +build windows
|
|
|
|
package readline
|
|
|
|
func init() {
|
|
Stdin = NewRawReader()
|
|
Stdout = NewANSIWriter(Stdout)
|
|
Stderr = NewANSIWriter(Stderr)
|
|
}
|