1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libnetwork/vendor/github.com/containerd/console
Euan Harris 705bf07f05 vendor.conf: Update vendored components to match moby
* Update dependencies to match moby master; add new sub-dependencies
  as necessary.

* Update moby to latest

* Update gocapability

  This moves gocapability beyond the version vendored in moby;
  presumably the code which requires this particular version
  is not used in moby and is removed by vndr.   Moby will need
  to be updated as well.

Signed-off-by: Euan Harris <euan.harris@docker.com>
2018-06-21 15:16:21 +01:00
..
console.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
console_linux.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
console_unix.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
console_windows.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
LICENSE bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
README.md bump docker/docker to master and unfork dependencies 2017-10-25 17:26:25 +02:00
tc_darwin.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_freebsd.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_linux.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_openbsd_cgo.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_openbsd_nocgo.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_solaris_cgo.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_solaris_nocgo.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01:00
tc_unix.go vendor.conf: Update vendored components to match moby 2018-06-21 15:16:21 +01: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)