From c8cc0f360d82ad787d2737070028d3dcfe4dbc9f Mon Sep 17 00:00:00 2001 From: Matt Johnson-Pint Date: Wed, 12 Jun 2024 18:59:46 -0700 Subject: [PATCH] fix linter --- hostfunctions/helpers.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hostfunctions/helpers.go b/hostfunctions/helpers.go index 795bcee4..79c419e7 100644 --- a/hostfunctions/helpers.go +++ b/hostfunctions/helpers.go @@ -116,6 +116,8 @@ func readParams4[T1, T2, T3, T4 any](ctx context.Context, mod wasm.Module, // return errors.Join(err1, err2, err3, err4, err5, err6) // } +var _ = callFunction // @jairad26 - remove this plz + func callFunction(ctx context.Context, mod wasm.Module, fnName string, inputValues ...any) (any, error) { info, ok := functions.Functions[fnName] if !ok {