Skip to content

Commit

Permalink
fix global var position
Browse files Browse the repository at this point in the history
  • Loading branch information
emcfarlane committed Oct 3, 2024
1 parent bf634a5 commit 423e044
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions private/pkg/wasm/wasm.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ import (
"pluginrpc.com/pluginrpc"
)

// UnimplementedRuntime is an unimplemented Runtime.
var UnimplementedRuntime = unimplementedRuntime{}

// CompiledModule is a Wasm module ready to be run.
//
// It is safe to use this module concurrently. When done, call Close to free
Expand Down Expand Up @@ -76,6 +79,3 @@ func WithLocalCacheDir(cacheDir string) RuntimeOption {
runtimeOptions.cacheDir = cacheDir
}
}

// UnimplementedRuntime is an unimplemented Runtime.
var UnimplementedRuntime = unimplementedRuntime{}

0 comments on commit 423e044

Please sign in to comment.