mirror of
https://github.com/mentos1386/zdravko.git
synced 2024-11-22 07:43:33 +00:00
14 lines
188 B
Go
14 lines
188 B
Go
|
package temporal
|
||
|
|
||
|
type WorkflowHookParam struct {
|
||
|
Script string
|
||
|
Filter string
|
||
|
HookId string
|
||
|
}
|
||
|
|
||
|
type WorkflowHookResult struct {
|
||
|
Note string
|
||
|
}
|
||
|
|
||
|
const WorkflowHookName = "HOOK_WORKFLOW"
|