9 lines
212 B
Go
9 lines
212 B
Go
package version
|
|
|
|
var (
|
|
// Version holds the value for the binary version. It is a compile time variable.
|
|
Version = "N/A"
|
|
// BuildTime is a compile time variable for the binary build time.
|
|
BuildTime = "N/A"
|
|
)
|