(c client.ControllerClientInterface)
| 23 | var instance *Proxy |
| 24 | |
| 25 | func NewProxy(c client.ControllerClientInterface) *Proxy { |
| 26 | if instance != nil { |
| 27 | return instance |
| 28 | } |
| 29 | instance = &Proxy{client: c} |
| 30 | return instance |
| 31 | } |
| 32 | |
| 33 | func GetProxy() *Proxy { |
| 34 | return instance |
no outgoing calls
no test coverage detected