()
| 66 | } |
| 67 | |
| 68 | func debugCmd() *cobra.Command { |
| 69 | flags := &generateCmdFlags{} |
| 70 | command := &cobra.Command{ |
| 71 | Use: "debug", |
| 72 | Hidden: true, |
| 73 | Args: cobra.MaximumNArgs(0), |
| 74 | RunE: func(cmd *cobra.Command, args []string) error { |
| 75 | return runGenerateCmd(cmd, flags) |
| 76 | }, |
| 77 | } |
| 78 | return command |
| 79 | } |
| 80 | |
| 81 | func devcontainerCmd() *cobra.Command { |
| 82 | flags := &generateCmdFlags{} |
no test coverage detected