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

19 lines
364 B
Go

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