WithEventService sets the event service.
(eventService EventService)
| 127 | |
| 128 | // WithEventService sets the event service. |
| 129 | func WithEventService(eventService EventService) ServicesOpt { |
| 130 | return func(s *services) { |
| 131 | s.eventService = eventService |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | // WithNamespaceClient sets the namespace service using a namespaces client. |
| 136 | func WithNamespaceClient(namespaceService namespacesapi.NamespacesClient) ServicesOpt { |
no outgoing calls
no test coverage detected
searching dependent graphs…