(deps commandDeps)
| 2189 | } |
| 2190 | |
| 2191 | func newTaskChildCommand(deps commandDeps) *cobra.Command { |
| 2192 | cmd := &cobra.Command{ |
| 2193 | Use: "child", |
| 2194 | Short: "Manage child tasks", |
| 2195 | RunE: func(cmd *cobra.Command, _ []string) error { |
| 2196 | return cmd.Help() |
| 2197 | }, |
| 2198 | } |
| 2199 | cmd.AddCommand(newTaskChildCreateCommand(deps)) |
| 2200 | return cmd |
| 2201 | } |
| 2202 | |
| 2203 | func newTaskChildCreateCommand(deps commandDeps) *cobra.Command { |
| 2204 | var ( |
no test coverage detected