aqi/worker/task.go

13 lines
168 B
Go
Raw Permalink Normal View History

2024-06-18 18:08:39 +08:00
package worker
import (
"context"
"github.com/hibiken/asynq"
)
type Task interface {
GetName() string
ProcessTask(ctx context.Context, task *asynq.Task) error
}