mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-07-31 19:49:50 +00:00
18 lines
392 B
Markdown
18 lines
392 B
Markdown
# console
|
|
|
|
[](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)
|
|
```
|