mirror of https://github.com/databricks/cli.git
21 lines
370 B
Go
21 lines
370 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 Application Bundles",
|
||
|
}
|
||
|
|
||
|
func AddCommand(cmd *cobra.Command) {
|
||
|
rootCmd.AddCommand(cmd)
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
root.RootCmd.AddCommand(rootCmd)
|
||
|
}
|