mirror of
https://github.com/docker/cli.git
synced 2026-01-26 15:41:42 +03:00
Various dependencies, including "golang.org/x/.." started to update the minimum required version,so we should follow suit for the next release. Note that the `//go:build` directives not necesserily have to be updated, but it's good to keep them in sync until we have a go.mod to control this. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
20 lines
433 B
Go
20 lines
433 B
Go
// FIXME(thaJeztah): remove once we are a module; the go:build directive prevents go from downgrading language version to go1.16:
|
|
//go:build go1.24
|
|
|
|
package tui
|
|
|
|
type Str struct {
|
|
// Fancy is the fancy string representation of the string.
|
|
Fancy string
|
|
|
|
// Plain is the plain string representation of the string.
|
|
Plain string
|
|
}
|
|
|
|
func (p Str) String(isTerminal bool) string {
|
|
if isTerminal {
|
|
return p.Fancy
|
|
}
|
|
return p.Plain
|
|
}
|