(config coreconfig.Reader, gateway net.Gateway)
| 138 | } |
| 139 | |
| 140 | func NewCloudControllerAppSummaryRepository(config coreconfig.Reader, gateway net.Gateway) (repo CloudControllerAppSummaryRepository) { |
| 141 | repo.config = config |
| 142 | repo.gateway = gateway |
| 143 | return |
| 144 | } |
| 145 | |
| 146 | func (repo CloudControllerAppSummaryRepository) GetSummariesInCurrentSpace() ([]models.Application, error) { |
| 147 | resources := new(ApplicationSummaries) |
no outgoing calls
no test coverage detected