Files
wazero/config_unsupported.go
Crypt Keeper d992373ea7 Moves test-only symbols out of wazero package (#597)
This moves the compiler support flag out of the public package as it was
only put there for tests. This also files modgen under the testing
subdir so that it isn't mistaken for main code.

Signed-off-by: Adrian Cole <adrian@tetrate.io>
2022-05-27 17:32:26 -07:00

9 lines
181 B
Go

//go:build !amd64 && !arm64
package wazero
// NewRuntimeConfig returns NewRuntimeConfigInterpreter
func NewRuntimeConfig() RuntimeConfig {
return NewRuntimeConfigInterpreter()
}