|
package debug
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
parent "github.com/databricks/bricks/cmd/bundle"
|
|
)
|
|
|
|
var debugCmd = &cobra.Command{
|
|
Use: "debug",
|
|
}
|
|
|
|
func AddCommand(cmd *cobra.Command) {
|
|
debugCmd.AddCommand(cmd)
|
|
}
|
|
|
|
func init() {
|
|
parent.AddCommand(debugCmd)
|
|
}
|