mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
19 lines
364 B
Go
19 lines
364 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/carapace-sh/carapace"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var init_phaseCmd = &cobra.Command{
|
|
Use: "phase",
|
|
Short: "Use this command to invoke single phase of the \"init\" workflow",
|
|
Run: func(cmd *cobra.Command, args []string) {},
|
|
}
|
|
|
|
func init() {
|
|
carapace.Gen(init_phaseCmd).Standalone()
|
|
|
|
initCmd.AddCommand(init_phaseCmd)
|
|
}
|