| 36 | ) |
| 37 | |
| 38 | type EventSource struct { |
| 39 | mu sync.Mutex |
| 40 | log logr.Logger |
| 41 | Spec *ofevent.KafkaSpec |
| 42 | Metadata map[string]interface{} |
| 43 | } |
| 44 | |
| 45 | func NewKafkaEventSource(log logr.Logger, spec *ofevent.KafkaSpec) event.OpenFunctionEventSource { |
| 46 | es := &EventSource{} |
nothing calls this directly
no outgoing calls
no test coverage detected