cmd: add helloworld example

Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
Tonis Tiigi
2019-03-22 14:19:33 -07:00
parent fd8fbf21e6
commit b5b4e98aee
2 changed files with 119 additions and 0 deletions

13
version/version.go Normal file
View File

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