Add workflow execution process
This commit is contained in:
12
internal/domain/workflow_output.go
Normal file
12
internal/domain/workflow_output.go
Normal file
@@ -0,0 +1,12 @@
|
||||
package domain
|
||||
|
||||
const WorkflowOutputCertificate = "certificate"
|
||||
|
||||
type WorkflowOutput struct {
|
||||
Meta
|
||||
Workflow string `json:"workflow"`
|
||||
NodeId string `json:"nodeId"`
|
||||
Node *WorkflowNode `json:"node"`
|
||||
Output []WorkflowNodeIo `json:"output"`
|
||||
Succeed bool `json:"succeed"`
|
||||
}
|
||||
Reference in New Issue
Block a user