frostfs-node/cmd/frostfs-adm/internal/modules/metabase/root.go

16 lines
264 B
Go
Raw Normal View History

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