mirror of
https://github.com/containers/podman.git
synced 2025-10-30 01:17:00 +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)
|
|
}
|