We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa70b8a commit 051c86bCopy full SHA for 051c86b
service.go
@@ -9,4 +9,8 @@ import (
9
//go:generate mockery -name=Service
10
type Service interface {
11
StartWorkflow(ctx context.Context, workflowName, revision, transactionId string, payload interface{}) (*StartWorkflowResponse, goerror.Error)
12
+ GetWorkflowDefinitions() ([]*WorkflowDefinition, goerror.Error)
13
+ GetTaskDefinitions() ([]*TaskDefinition, goerror.Error)
14
+ SetTaskDefinition(t TaskDefinition) goerror.Error
15
+ SetWorkflowDefinition(t WorkflowDefinition) goerror.Error
16
}
0 commit comments