HandlerFunc represents a valid input with two arguments and two returns as described by Start
| 11 | |
| 12 | // HandlerFunc represents a valid input with two arguments and two returns as described by Start |
| 13 | type HandlerFunc[TIn, TOut any] interface { |
| 14 | func(context.Context, TIn) (TOut, error) |
| 15 | } |
| 16 | |
| 17 | // StartHandlerFunc is the same as StartWithOptions except that it takes a generic input |
| 18 | // so that the function signature can be validated at compile time. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…