mirror of
https://github.com/certimate-go/certimate.git
synced 2026-06-22 21:05:48 +08:00
14 lines
161 B
Go
14 lines
161 B
Go
package dispatcher
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type taskInfo struct {
|
|
WorkflowId string
|
|
RunId string
|
|
|
|
ctx context.Context
|
|
cancel context.CancelFunc
|
|
}
|