()
| 20 | ) |
| 21 | |
| 22 | func newWorkflowCmd() *cobra.Command { |
| 23 | cmd := &cobra.Command{ |
| 24 | Use: "workflow", |
| 25 | Aliases: []string{"wf"}, |
| 26 | Short: "Workflow management in the control plane", |
| 27 | } |
| 28 | |
| 29 | cmd.AddCommand(newWorkflowListCmd(), newWorkflowDescribeCmd(), newWorkflowCreateCmd(), newWorkflowUpdateCmd(), newWorkflowDeleteCmd(), newWorkflowWorkflowRunCmd(), newWorkflowContractCmd(), newAttachedIntegrationCmd()) |
| 30 | return cmd |
| 31 | } |
no test coverage detected