10 lines
186 B
Go
10 lines
186 B
Go
package version
|
|
|
|
var (
|
|
// VERSION should be updated by hand at each release
|
|
VERSION = "0.1.0"
|
|
|
|
// GITCOMMIT will be overritten automatically by the build system
|
|
GITCOMMIT = "HEAD"
|
|
)
|