func NewPlanCmd()

in cmd/plan.go [10:17]


func NewPlanCmd() *cobra.Command {
	cmd := &cobra.Command{
		Use:   "plan",
		Short: "Generates a plan based on the specified configuration, grept plan [path to config files]",
		RunE:  planFunc(),
	}
	return cmd
}