package maintenance

import (
	"git.frostfs.info/TrueCloudLab/frostfs-node/cmd/frostfs-adm/internal/modules/maintenance/zombie"
	"github.com/spf13/cobra"
)

var RootCmd = &cobra.Command{
	Use:   "maintenance",
	Short: "Section for maintenance commands",
}

func init() {
	RootCmd.AddCommand(zombie.Cmd)
}