mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9152e63290
This change adds a Platform struct with a Name field and a general Components field to the Version API type. This will allow API consumers to show version information for the whole platform and it will allow API providers to set the versions for the various components of the platform. All changes here are backwards compatible. Signed-off-by: Tibor Vass <tibor@docker.com>
17 lines
581 B
Go
17 lines
581 B
Go
// +build !autogen
|
|
|
|
// Package dockerversion is auto-generated at build-time
|
|
package dockerversion
|
|
|
|
// Default build-time variable for library-import.
|
|
// This file is overridden on build with build-time informations.
|
|
const (
|
|
GitCommit string = "library-import"
|
|
Version string = "library-import"
|
|
BuildTime string = "library-import"
|
|
IAmStatic string = "library-import"
|
|
ContainerdCommitID string = "library-import"
|
|
RuncCommitID string = "library-import"
|
|
InitCommitID string = "library-import"
|
|
PlatformName string = ""
|
|
)
|