move versioning into the version package
Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
14
version/version.go
Normal file
14
version/version.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package version
|
||||
|
||||
const (
|
||||
DevelopmentVersion = "devel"
|
||||
)
|
||||
|
||||
var (
|
||||
// Version holds the complete version number. Filled in at linking time.
|
||||
Version = DevelopmentVersion
|
||||
|
||||
// Revision is filled with the VCS (e.g. git) revision being used to build
|
||||
// the program at linking time.
|
||||
Revision = ""
|
||||
)
|
Reference in New Issue
Block a user