Files
Gardomatic/internal/vcs/vcs.go
T
kleiax 904d14b64c
CI / test (push) Canceled after 0s
Initial commit
2026-09-12 22:22:17 +02:00

16 lines
217 B
Go

package vcs
import (
"runtime/debug"
)
// Version returns the main module version from Go build metadata.
func Version() string {
bi, ok := debug.ReadBuildInfo()
if ok {
return bi.Main.Version
}
return ""
}