| 17 | } |
| 18 | |
| 19 | type EventStorer interface { |
| 20 | HandleIncoming(ctx context.Context, inc *event.Incoming) error |
| 21 | } |
| 22 | |
| 23 | func New(addr string) *Module { |
| 24 | return &Module{addr: addr} |
nothing calls this directly
no outgoing calls
no test coverage detected