bitcask-mirror/internal/version.go
2019-03-18 17:31:31 +10:00

19 lines
308 B
Go

package internal
import (
"fmt"
)
var (
// Version release version
Version = "0.0.1"
// Commit will be overwritten automatically by the build system
Commit = "HEAD"
)
// FullVersion returns the full version and commit hash
func FullVersion() string {
return fmt.Sprintf("%s@%s", Version, Commit)
}