Some checks failed
Pipeline: Test, Lint, Build / Get version info (push) Has been cancelled
Pipeline: Test, Lint, Build / Lint Go code (push) Has been cancelled
Pipeline: Test, Lint, Build / Test Go code (push) Has been cancelled
Pipeline: Test, Lint, Build / Test JS code (push) Has been cancelled
Pipeline: Test, Lint, Build / Lint i18n files (push) Has been cancelled
Pipeline: Test, Lint, Build / Check Docker configuration (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (darwin/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (darwin/arm64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/386) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v5) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v6) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm/v7) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (linux/arm64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (windows/386) (push) Has been cancelled
Pipeline: Test, Lint, Build / Build (windows/amd64) (push) Has been cancelled
Pipeline: Test, Lint, Build / Push to GHCR (push) Has been cancelled
Pipeline: Test, Lint, Build / Push to Docker Hub (push) Has been cancelled
Pipeline: Test, Lint, Build / Cleanup digest artifacts (push) Has been cancelled
Pipeline: Test, Lint, Build / Build Windows installers (push) Has been cancelled
Pipeline: Test, Lint, Build / Package/Release (push) Has been cancelled
Pipeline: Test, Lint, Build / Upload Linux PKG (push) Has been cancelled
Close stale issues and PRs / stale (push) Has been cancelled
POEditor import / update-translations (push) Has been cancelled
48 lines
1.1 KiB
Go
48 lines
1.1 KiB
Go
//go:build !wasip1
|
|
|
|
// Code generated by protoc-gen-go-plugin. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go-plugin v0.1.0
|
|
// protoc v5.29.3
|
|
// source: api/api.proto
|
|
|
|
package api
|
|
|
|
import (
|
|
context "context"
|
|
wazero "github.com/tetratelabs/wazero"
|
|
wasi_snapshot_preview1 "github.com/tetratelabs/wazero/imports/wasi_snapshot_preview1"
|
|
)
|
|
|
|
type wazeroConfigOption func(plugin *WazeroConfig)
|
|
|
|
type WazeroNewRuntime func(context.Context) (wazero.Runtime, error)
|
|
|
|
type WazeroConfig struct {
|
|
newRuntime func(context.Context) (wazero.Runtime, error)
|
|
moduleConfig wazero.ModuleConfig
|
|
}
|
|
|
|
func WazeroRuntime(newRuntime WazeroNewRuntime) wazeroConfigOption {
|
|
return func(h *WazeroConfig) {
|
|
h.newRuntime = newRuntime
|
|
}
|
|
}
|
|
|
|
func DefaultWazeroRuntime() WazeroNewRuntime {
|
|
return func(ctx context.Context) (wazero.Runtime, error) {
|
|
r := wazero.NewRuntime(ctx)
|
|
if _, err := wasi_snapshot_preview1.Instantiate(ctx, r); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return r, nil
|
|
}
|
|
}
|
|
|
|
func WazeroModuleConfig(moduleConfig wazero.ModuleConfig) wazeroConfigOption {
|
|
return func(h *WazeroConfig) {
|
|
h.moduleConfig = moduleConfig
|
|
}
|
|
}
|