15 lines
264 B
Go
15 lines
264 B
Go
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()
|
|
}
|