runc/vendor/github.com/containerd/console
Odin Ugedal 69e8fb2a74
Add support for GO Modules
This removes vndr, and swiches to native Go Modules instead. All modules
are kept on the old version.

Keeps the vendor/ dir, so everything is backwards compatible.

Signed-off-by: Odin Ugedal <odin@ugedal.com>
2020-03-07 09:29:29 +01:00
..
.travis.yml Add support for GO Modules 2020-03-07 09:29:29 +01:00
LICENSE bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
README.md bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
console.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
console_linux.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
console_unix.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
console_windows.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_darwin.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_freebsd.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_linux.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_openbsd_cgo.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_openbsd_nocgo.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_solaris_cgo.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_solaris_nocgo.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00
tc_unix.go bump containerd/console 0650fd9eeb50bab4fc99dceb9f2e14cf58f36e7f 2019-09-06 01:43:39 +02:00

README.md

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)

Project details

console is a containerd sub-project, licensed under the Apache 2.0 license. As a containerd sub-project, you will find the:

information in our containerd/project repository.