mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 15:53:45 +00:00
14 lines
241 B
Go
14 lines
241 B
Go
package temporal
|
|
|
|
type WorkflowCheckParam struct {
|
|
Script string
|
|
Filter string
|
|
CheckId string
|
|
WorkerGroupIds []string
|
|
}
|
|
|
|
type WorkflowCheckResult struct {
|
|
Note string
|
|
}
|
|
|
|
const WorkflowCheckName = "CHECK_WORKFLOW"
|