Source File
importresolver.go
Belonging Package
github.com/tetratelabs/wazero/experimental
package experimentalimport ()// ImportResolver is an experimental func type that, if set,// will be used as the first step in resolving imports.// See issue 2294.// If the import name is not found, it should return nil.type ImportResolver func(name string) api.Module// WithImportResolver returns a new context with the given ImportResolver.func ( context.Context, ImportResolver) context.Context {return context.WithValue(, expctxkeys.ImportResolverKey{}, )}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |