version: Move version information into a separate package.

This will allow it to be accessed by other sections of the code.
This commit is contained in:
Alex Vandiver
2021-09-21 15:57:24 -07:00
parent 886499b4fb
commit 35b8f93502
6 changed files with 16 additions and 12 deletions

6
version/version.go Normal file
View File

@@ -0,0 +1,6 @@
package version
var (
Release = "1.23.1-dev"
GitHash string
)