()
| 503 | } |
| 504 | |
| 505 | func (d *dependency) GroupClient() inventory.GroupClient { |
| 506 | if d.groupClient != nil { |
| 507 | return d.groupClient |
| 508 | } |
| 509 | |
| 510 | return inventory.NewGroupClient(d.DBClient(), d.ConfigProvider().Database().Type, d.KV()) |
| 511 | } |
| 512 | |
| 513 | func (d *dependency) NodeClient() inventory.NodeClient { |
| 514 | if d.nodeClient != nil { |
nothing calls this directly
no test coverage detected