fix version string maybe

This commit is contained in:
Finn 2024-07-24 00:53:20 -07:00
parent 5bccac44d6
commit 6f409bf0f1
2 changed files with 23 additions and 1 deletions

18
config/version.go Normal file
View file

@ -0,0 +1,18 @@
package config
import (
"runtime/debug"
"github.com/sirupsen/logrus"
)
var BuildInfo *debug.BuildInfo
func init() {
var ok bool
BuildInfo, ok = debug.ReadBuildInfo()
if !ok {
logrus.Error("failed to read build info")
return
}
}

View file

@ -2,10 +2,12 @@ package httpserver
import ( import (
"embed" "embed"
"fmt"
"html/template" "html/template"
"io" "io"
"io/fs" "io/fs"
"git.janky.solutions/finn/go-project-template/config"
echo "github.com/labstack/echo/v4" echo "github.com/labstack/echo/v4"
) )
@ -15,7 +17,9 @@ var (
templatesSubFS fs.FS templatesSubFS fs.FS
allTemplates *template.Template allTemplates *template.Template
funcs = template.FuncMap{ funcs = template.FuncMap{
"version": func() string { return "everybody v0.0.0 fakecommit" }, "version": func() string {
return fmt.Sprintf("%s %s", config.BuildInfo.Main.Path, config.BuildInfo.Main.Version)
},
} }
//go:embed static //go:embed static