Files
wazero/config_supported.go
Crypt Keeper 56135d4125 Sets floor go version to 1.17 (#317)
We temporarily supported go 1.16 to allow migration. By setting the
floor to 1.17, we can improve performance and focus on only two versions
(1.17 and soon 1.18).

See https://go.googlesource.com/proposal/+/refs/changes/78/248178/1/design/40724-register-calling.md
See #37

Signed-off-by: Adrian Cole <adrian@tetrate.io>
2022-03-03 10:48:21 +08:00

9 lines
164 B
Go

//go:build amd64 || arm64
package wazero
// NewRuntimeConfig returns NewRuntimeConfigJIT
func NewRuntimeConfig() *RuntimeConfig {
return NewRuntimeConfigJIT()
}