Initial commit
CI / test (push) Canceled after 0s

This commit is contained in:
2026-09-12 22:22:17 +02:00
commit 904d14b64c
314 changed files with 31884 additions and 0 deletions
+2
View File
@@ -0,0 +1,2 @@
// Package vcs derives build version information from Go build metadata.
package vcs
+15
View File
@@ -0,0 +1,15 @@
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 ""
}