Files
containerd/vendor/github.com/containerd/console
Michael Crosby d6cd1e5379 Update console dep to c12b1e7919c14469339a5d38f2f8
This fixes interactive consoles in windows

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2018-08-22 13:33:01 -04:00
..
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2017-05-24 17:38:24 +01:00
2017-05-24 17:38:24 +01:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00
2018-03-08 13:57:30 -05:00

console

Build Status

Golang package for dealing with consoles. Light on deps and a simple API.

Modifying the current process

current := console.Current()
defer current.Reset()

if err := current.SetRaw(); err != nil {
}
ws, err := current.Size()
current.Resize(ws)