Files
shop10/internal/version/version.go
T

14 lines
192 B
Go

package version
import "runtime"
const (
AppVersion = "0.20"
ExpectedPostgresMajor = 17
MinGoVersion = "1.22"
)
func GoRuntime() string {
return runtime.Version()
}