mirror of https://github.com/databricks/cli.git
21 lines
364 B
Go
21 lines
364 B
Go
package bundle
|
|
|
|
import (
|
|
"github.com/databricks/bricks/cmd/root"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// rootCmd represents the root command for the bundle subcommand.
|
|
var rootCmd = &cobra.Command{
|
|
Use: "bundle",
|
|
Short: "Databricks Asset Bundles",
|
|
}
|
|
|
|
func AddCommand(cmd *cobra.Command) {
|
|
rootCmd.AddCommand(cmd)
|
|
}
|
|
|
|
func init() {
|
|
root.RootCmd.AddCommand(rootCmd)
|
|
}
|