on server start print version info

This commit is contained in:
Christian Goll
2021-10-07 11:01:59 +02:00
parent 58c6adaff4
commit 0a6d8b39a6
4 changed files with 12 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
package version
var Version string = "development"
func GetVersion() string {
return Version
}