()
| 883 | } |
| 884 | |
| 885 | func (d *dependency) StoragePolicyClient() inventory.StoragePolicyClient { |
| 886 | if d.storagePolicyClient != nil { |
| 887 | return d.storagePolicyClient |
| 888 | } |
| 889 | |
| 890 | return inventory.NewStoragePolicyClient(d.DBClient(), d.KV()) |
| 891 | } |
| 892 | |
| 893 | func (d *dependency) ThumbPipeline() thumb.Generator { |
| 894 | if d.thumbPipeline != nil { |
nothing calls this directly
no test coverage detected