github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/engine/access/wrapper/execution_api_client.go (about) 1 package wrapper 2 3 import ( 4 "github.com/onflow/flow/protobuf/go/flow/execution" 5 ) 6 7 // ExecutionAPIClient allows for generation of a mock (via mockery) for the real ExecutionAPIClient imported as a dependency 8 // from the flow repo 9 type ExecutionAPIClient interface { 10 execution.ExecutionAPIClient 11 } 12 13 type ExecutionAPIServer interface { 14 execution.ExecutionAPIServer 15 }