| 27 | } |
| 28 | |
| 29 | type messageHandlerFunc struct { |
| 30 | HandleFunc func(message *sqs.Message) error |
| 31 | } |
| 32 | |
| 33 | func (h *messageHandlerFunc) Handle(msg *sqs.Message) error { |
| 34 | return h.HandleFunc(msg) |
nothing calls this directly
no outgoing calls
no test coverage detected