7574b334cc
Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
15 lines
294 B
Go
15 lines
294 B
Go
package version
|
|
|
|
var (
|
|
Version = "0.0.1"
|
|
|
|
// Build will be overwritten automatically by the build system
|
|
Build = "-dev"
|
|
|
|
// GitCommit will be overwritten automatically by the build system
|
|
GitCommit = "HEAD"
|
|
)
|
|
|
|
func FullVersion() string {
|
|
return Version + Build + " (" + GitCommit + ")"
|
|
}
|