()
| 20 | ) |
| 21 | |
| 22 | func newWorkflowWorkflowRunCmd() *cobra.Command { |
| 23 | cmd := &cobra.Command{ |
| 24 | Use: "workflow-run", |
| 25 | Aliases: []string{"run"}, |
| 26 | Short: "Workflow Runs related operations", |
| 27 | } |
| 28 | |
| 29 | cmd.AddCommand(newWorkflowWorkflowRunListCmd(), newWorkflowWorkflowRunDescribeCmd()) |
| 30 | return cmd |
| 31 | } |
no test coverage detected