12345678910111213141516171819 |
- package container
- // ResizeOptions holds parameters to resize a TTY.
- // It can be used to resize container TTYs and
- // exec process TTYs too.
- type ResizeOptions struct {
- Height uint
- Width uint
- }
- // AttachOptions holds parameters to attach to a container.
- type AttachOptions struct {
- Stream bool
- Stdin bool
- Stdout bool
- Stderr bool
- DetachKeys string
- Logs bool
- }
|