MCPcopy Index your code
hub / github.com/jetify-com/devbox / integrateCmd

Function integrateCmd

internal/boxcli/integrate.go:29–42  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

27}
28
29func 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
44func integrateVSCodeCmd() *cobra.Command {
45 flags := integrateCmdFlags{}

Callers 1

RootCmdFunction · 0.85

Calls 1

integrateVSCodeCmdFunction · 0.85

Tested by

no test coverage detected