Files
worker/task.go
T

7 lines
139 B
Go
Raw Normal View History

2026-05-29 15:46:49 +00:00
package worker
import "context"
// Task is a unit of work executed asynchronously by the pool.
type Task func(ctx context.Context) error