ActionHandler is an interface for implementing injection actions.
| 32 | |
| 33 | // ActionHandler is an interface for implementing injection actions. |
| 34 | type ActionHandler interface { |
| 35 | Execute(ctx *InjectionContext, config map[string]any) (*ActionResult, error) |
| 36 | } |
| 37 | |
| 38 | // ModifyPayloadHandler handles payload modification actions. |
| 39 | type ModifyPayloadHandler struct{} |
no outgoing calls
no test coverage detected