( ctx context.Context, job TJob)
| 26 | // JobProcessor defines the contract for processing a single job within a workflow. |
| 27 | type JobProcessor[TJob any] interface { |
| 28 | Process( |
| 29 | ctx context.Context, |
| 30 | job TJob) error |
| 31 | } |
no outgoing calls
no test coverage detected