github.com/cloudfoundry-attic/cli-with-i18n@v6.32.1-0.20171002233121-7401370d3b85+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 }