ErrorHandler handles an error.
| 6 | |
| 7 | // ErrorHandler handles an error. |
| 8 | type ErrorHandler interface { |
| 9 | // Handle handles an error. |
| 10 | Handle(ctx context.Context, err error) |
| 11 | } |
| 12 | |
| 13 | type noopErrorHandler struct{} |
| 14 |
no outgoing calls
no test coverage detected