mirror of https://github.com/databricks/cli.git
16 lines
198 B
Go
16 lines
198 B
Go
|
package debug
|
||
|
|
||
|
import (
|
||
|
"github.com/spf13/cobra"
|
||
|
|
||
|
parent "github.com/databricks/bricks/cmd/bundle"
|
||
|
)
|
||
|
|
||
|
var debugCmd = &cobra.Command{
|
||
|
Use: "debug",
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
parent.AddCommand(debugCmd)
|
||
|
}
|