mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
The Server section of version output is now composed of an Engine component and potentially more, based on what the /version endpoint returns. Signed-off-by: Tibor Vass <tibor@docker.com>
11 lines
218 B
Go
11 lines
218 B
Go
package cli
|
|
|
|
// Default build-time variable.
|
|
// These values are overriding via ldflags
|
|
var (
|
|
PlatformName = ""
|
|
Version = "unknown-version"
|
|
GitCommit = "unknown-commit"
|
|
BuildTime = "unknown-buildtime"
|
|
)
|