databricks-cli/cmd/bundle/debug/debug.go

16 lines
198 B
Go
Raw Normal View History

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)
}