github.com/liamawhite/cli-with-i18n@v6.32.1-0.20171122084555-dede0a5c3448+incompatible/cf/api/apifakes/old_fake_service_summary_repo.go (about)

     1  package apifakes
     2  
     3  import "github.com/liamawhite/cli-with-i18n/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  }