github.com/koko1123/flow-go-1@v0.29.6/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 }