(deps commandDeps)
| 41 | } |
| 42 | |
| 43 | func newSupportCommand(deps commandDeps) *cobra.Command { |
| 44 | cmd := &cobra.Command{ |
| 45 | Use: supportCommandKey, |
| 46 | Short: "Create daemon-owned support artifacts", |
| 47 | } |
| 48 | cmd.AddCommand(newSupportBundleCommand(deps)) |
| 49 | return cmd |
| 50 | } |
| 51 | |
| 52 | func newSupportBundleCommand(deps commandDeps) *cobra.Command { |
| 53 | var opts supportBundleOptions |
no test coverage detected