github.com/sleungcy/cli@v7.1.0+incompatible/cf/api/apifakes/old_fake_service_summary_repo.go (about) 1 package apifakes 2 3 import "code.cloudfoundry.org/cli/cf/models" 4 5 type OldFakeServiceSummaryRepo struct { 6 GetSummariesInCurrentSpaceInstances []models.ServiceInstance 7 } 8 9 func (repo *OldFakeServiceSummaryRepo) GetSummariesInCurrentSpace() (instances []models.ServiceInstance, apiErr error) { 10 instances = repo.GetSummariesInCurrentSpaceInstances 11 return 12 }