WithContentStore sets the content store.
(contentStore content.Store)
| 63 | |
| 64 | // WithContentStore sets the content store. |
| 65 | func WithContentStore(contentStore content.Store) ServicesOpt { |
| 66 | return func(s *services) { |
| 67 | s.contentStore = contentStore |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | // WithImageClient sets the image service to use using an images client. |
| 72 | func WithImageClient(imageService imagesapi.ImagesClient) ServicesOpt { |
no outgoing calls
no test coverage detected
searching dependent graphs…