()
| 27 | } |
| 28 | |
| 29 | func integrateCmd() *cobra.Command { |
| 30 | command := &cobra.Command{ |
| 31 | Use: "integrate", |
| 32 | Short: "integrate with an IDE", |
| 33 | Args: cobra.MaximumNArgs(1), |
| 34 | Hidden: true, |
| 35 | PreRunE: ensureNixInstalled, |
| 36 | RunE: func(cmd *cobra.Command, args []string) error { |
| 37 | return cmd.Help() |
| 38 | }, |
| 39 | } |
| 40 | command.AddCommand(integrateVSCodeCmd()) |
| 41 | return command |
| 42 | } |
| 43 | |
| 44 | func integrateVSCodeCmd() *cobra.Command { |
| 45 | flags := integrateCmdFlags{} |
no test coverage detected