(ctx context.Context, input []byte)
| 24 | // handlers MUST NOT apply [Hook.GetTimeout] themselves. |
| 25 | type Handler interface { |
| 26 | Run(ctx context.Context, input []byte) (HandlerResult, error) |
| 27 | } |
| 28 | |
| 29 | // HandlerResult is the raw outcome of a [Handler.Run] call. |
no outgoing calls