summaryrefslogtreecommitdiff
path: root/vendor/github.com/containerd/console/README.md
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-02-28 17:02:49 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-01 13:20:16 +0000
commitb2a5d5aa5ad185afa15b4f2fbb144093fe88fd64 (patch)
tree207a1fee04081233bf184972d33971923349a730 /vendor/github.com/containerd/console/README.md
parentd6ed9451dc29cdec4538530aa9c0936de7a1e66c (diff)
downloadpodman-b2a5d5aa5ad185afa15b4f2fbb144093fe88fd64.tar.gz
podman-b2a5d5aa5ad185afa15b4f2fbb144093fe88fd64.tar.bz2
podman-b2a5d5aa5ad185afa15b4f2fbb144093fe88fd64.zip
Remove unused vendor github.com/containerd/console
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #425 Approved by: rhatdan
Diffstat (limited to 'vendor/github.com/containerd/console/README.md')
-rw-r--r--vendor/github.com/containerd/console/README.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/github.com/containerd/console/README.md b/vendor/github.com/containerd/console/README.md
deleted file mode 100644
index 4c56d9d13..000000000
--- a/vendor/github.com/containerd/console/README.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# console
-
-[![Build Status](https://travis-ci.org/containerd/console.svg?branch=master)](https://travis-ci.org/containerd/console)
-
-Golang package for dealing with consoles. Light on deps and a simple API.
-
-## Modifying the current process
-
-```go
-current := console.Current()
-defer current.Reset()
-
-if err := current.SetRaw(); err != nil {
-}
-ws, err := current.Size()
-current.Resize(ws)
-```