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