Discovery discovery
| 11 | |
| 12 | //Discovery discovery |
| 13 | type Discovery struct { |
| 14 | //Config *api.Config |
| 15 | |
| 16 | orgConfig string |
| 17 | |
| 18 | callback func([]*common.Service) |
| 19 | client *api.Client |
| 20 | services []*common.Service |
| 21 | |
| 22 | instanceFactory *common.InstanceFactory |
| 23 | cancel context.CancelFunc |
| 24 | } |
| 25 | |
| 26 | //SetConfig setConfig |
| 27 | func (d *Discovery) SetConfig(config string) error { |
nothing calls this directly
no outgoing calls
no test coverage detected