feat: use a getter

This commit is contained in:
2026-01-26 22:17:02 +01:00
parent 11dc9b507f
commit 75f1406edf

View File

@@ -1,3 +1,7 @@
package version
const Version = "0.1.1"
const version = "0.1.1"
func GetVersion() string {
return version
}