2025-04-25 18:29:51 +02:00

19 lines
369 B
Go

package cmd
import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)
var reset_phaseCmd = &cobra.Command{
Use: "phase",
Short: "Use this command to invoke single phase of the \"reset\" workflow",
Run: func(cmd *cobra.Command, args []string) {},
}
func init() {
carapace.Gen(reset_phaseCmd).Standalone()
resetCmd.AddCommand(reset_phaseCmd)
}