new service: version

Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
This commit is contained in:
Akihiro Suda
2017-04-27 07:46:23 +00:00
parent b53105ed25
commit 2562aca1a3
14 changed files with 607 additions and 28 deletions

14
version/version.go Normal file
View File

@@ -0,0 +1,14 @@
package version
var (
// Package is filled at linking time
Package = "github.com/containerd/containerd"
// Version holds the complete version number.
// Filled at linking time.
Version = "1.0.0-dev+unknown"
// Revision is filled with the VCS (e.g. git) revision being used to build the
// program at linking time
Revision = ""
)