version.go
 1// Package version is used to store the version of the server during runtime.
 2// The values are set during runtime in the main package.
 3package version
 4
 5var (
 6	// Version is the version of the server.
 7	Version = ""
 8
 9	// CommitSHA is the commit SHA of the server.
10	CommitSHA = ""
11
12	// CommitDate is the commit date of the server.
13	CommitDate = ""
14)