mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-05 16:35:45 +00:00
prune a dependency that was only being used for a simple struct. Should correct checksum issue on tarballs [NO TESTS NEEDED] Fixes: #9355 Signed-off-by: baude <bbaude@redhat.com>
7 lines
138 B
Go
7 lines
138 B
Go
package define
|
|
|
|
// TerminalSize represents the width and height of a terminal.
|
|
type TerminalSize struct {
|
|
Width uint16
|
|
Height uint16
|
|
}
|