WithFileClient Set the default file client
(s inventory.FileClient)
| 148 | |
| 149 | // WithFileClient Set the default file client |
| 150 | func WithFileClient(s inventory.FileClient) Option { |
| 151 | return optionFunc(func(o *dependency) { |
| 152 | o.fileClient = s |
| 153 | }) |
| 154 | } |
| 155 | |
| 156 | // WithShareClient Set the default share client |
| 157 | func WithShareClient(s inventory.ShareClient) Option { |
nothing calls this directly
no test coverage detected