()
| 20 | ) |
| 21 | |
| 22 | func newWorkflowContractCmd() *cobra.Command { |
| 23 | cmd := &cobra.Command{ |
| 24 | Use: "contract", |
| 25 | Short: "Workflow Contract related operations", |
| 26 | } |
| 27 | |
| 28 | cmd.AddCommand( |
| 29 | newWorkflowContractListCmd(), |
| 30 | newWorkflowContractCreateCmd(), |
| 31 | newWorkflowContractApplyCmd(), |
| 32 | newWorkflowContractDescribeCmd(), |
| 33 | newWorkflowContractUpdateCmd(), |
| 34 | newWorkflowContractDeleteCmd(), |
| 35 | ) |
| 36 | return cmd |
| 37 | } |
no test coverage detected