Closed jmrodri closed 6 years ago
BusinessLogic is super generic. Consider calling it type Broker interface:
type Broker interface
https://github.com/openshift/ansible-service-broker/blob/master/pkg/broker/broker.go#L76-L90
Good idea. I was also considering broker.Interface which is probably more idiomatic go
broker.Interface
Being more go idiomatic is a fair compromise.
BusinessLogic is super generic. Consider calling it
type Broker interface
:https://github.com/openshift/ansible-service-broker/blob/master/pkg/broker/broker.go#L76-L90