mirror of https://github.com/databricks/cli.git
19 lines
435 B
Go
19 lines
435 B
Go
|
package bundle
|
||
|
|
||
|
import (
|
||
|
"github.com/databricks/cli/cmd/bundle/debug"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func newDebugCommand() *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "debug",
|
||
|
Short: "Debug information about bundles",
|
||
|
Long: "Debug information about bundles",
|
||
|
// This command group is currently intended for the Databricks VSCode extension only
|
||
|
Hidden: true,
|
||
|
}
|
||
|
cmd.AddCommand(debug.NewTerraformCommand())
|
||
|
return cmd
|
||
|
}
|