package metabase import "github.com/spf13/cobra" // RootCmd is a root command of config section. var RootCmd = &cobra.Command{ Use: "metabase", Short: "Section for metabase commands", } func init() { RootCmd.AddCommand(UpgradeCmd) initUpgradeCommand() }