certimate/internal/workflow/dispatcher/task.go
2025-08-22 11:48:27 +08:00

14 lines
161 B
Go

package dispatcher
import (
"context"
)
type taskInfo struct {
WorkflowId string
RunId string
ctx context.Context
cancel context.CancelFunc
}