(config coreconfig.Reader, gateway net.Gateway)
| 25 | } |
| 26 | |
| 27 | func NewCloudControllerServiceBindingRepository(config coreconfig.Reader, gateway net.Gateway) (repo CloudControllerServiceBindingRepository) { |
| 28 | repo.config = config |
| 29 | repo.gateway = gateway |
| 30 | return |
| 31 | } |
| 32 | |
| 33 | func (repo CloudControllerServiceBindingRepository) Create(instanceGUID, appGUID string, paramsMap map[string]interface{}) error { |
| 34 | path := "/v2/service_bindings" |
no outgoing calls
no test coverage detected