Added Go runtime version to the layout footer

This commit is contained in:
Gregory Ballantine
2024-05-29 11:04:31 -04:00
parent e3e4e24e56
commit 1e87466ccb
4 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,10 @@
package app
var (
Version string = "N/a"
import (
"runtime"
)
var (
AppVersion string = "N/a"
RuntimeVersion string = runtime.Version
)