(config coreconfig.Reader, gateway net.Gateway)
| 27 | } |
| 28 | |
| 29 | func NewCloudControllerStackRepository(config coreconfig.Reader, gateway net.Gateway) (repo CloudControllerStackRepository) { |
| 30 | repo.config = config |
| 31 | repo.gateway = gateway |
| 32 | return |
| 33 | } |
| 34 | |
| 35 | func (repo CloudControllerStackRepository) FindByGUID(guid string) (models.Stack, error) { |
| 36 | stackRequest := resources.StackResource{} |
no outgoing calls
no test coverage detected