Files
shop10/internal/version/version.go
T
shop 4ea2b429b3 Release v0.10-beta
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-16 17:18:25 +03:00

14 lines
197 B
Go

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