4ea2b429b3
Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
197 B
Go
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()
|
|
}
|