mirror of
https://github.com/containers/podman.git
synced 2025-05-20 08:36:23 +08: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>
8 lines
138 B
Go
8 lines
138 B
Go
package define
|
|
|
|
// TerminalSize represents the width and height of a terminal.
|
|
type TerminalSize struct {
|
|
Width uint16
|
|
Height uint16
|
|
}
|