(config coreconfig.Reader, gateway net.Gateway)
| 32 | } |
| 33 | |
| 34 | func NewCloudControllerQuotaRepository(config coreconfig.Reader, gateway net.Gateway) (repo CloudControllerQuotaRepository) { |
| 35 | repo.config = config |
| 36 | repo.gateway = gateway |
| 37 | return |
| 38 | } |
| 39 | |
| 40 | func (repo CloudControllerQuotaRepository) findAllWithPath(path string) ([]models.QuotaFields, error) { |
| 41 | var quotas []models.QuotaFields |
no outgoing calls
no test coverage detected