This commit is contained in:
2025-11-05 11:38:09 +03:00
parent 13eb3d45de
commit 7f248fff62
6 changed files with 253 additions and 71 deletions

View File

@@ -1,8 +1,12 @@
package laniakea
import "os"
const (
VERSION_STRING = "0.1.4"
VERSION_MAJOR = 0
VERSION_MINOR = 1
VERSION_PATCH = 4
VersionString = "0.1.4"
VersionMajor = 0
VersionMinor = 1
VersionPatch = 4
)
var GoVersion = os.Getenv("GoV")