FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE effd26bd9af218f8e8769afc4afcb18e04d74761
Files
Laniakea/utils/version.go
T
ScuroNeko 4807dec6ae
Golang lint / lint (push) Successful in 1m5s
(fix): observer lifecycle
(tests): webhook runtime

(doc): logger options
2026-04-29 13:11:54 +03:00

15 lines
374 B
Go

package utils
const (
// VersionString is the module version string.
VersionString = "1.0.0"
// VersionMajor is the module major version.
VersionMajor = 1
// VersionMinor is the module minor version.
VersionMinor = 0
// VersionPatch is the module patch version.
VersionPatch = 0
// VersionBeta is the prerelease counter for the current version.
VersionBeta = 0
)