()
| 813 | } |
| 814 | |
| 815 | func (d *dependency) TaskClient() inventory.TaskClient { |
| 816 | if d.taskClient != nil { |
| 817 | return d.taskClient |
| 818 | } |
| 819 | |
| 820 | return inventory.NewTaskClient(d.DBClient(), d.ConfigProvider().Database().Type, d.HashIDEncoder()) |
| 821 | } |
| 822 | |
| 823 | func (d *dependency) DavAccountClient() inventory.DavAccountClient { |
| 824 | if d.davAccountClient != nil { |
no test coverage detected