package cli import ( "github.com/spf13/cobra" ) func templatePlan() *cobra.Command { return &cobra.Command{ Use: "plan ", Args: cobra.MinimumNArgs(1), Short: "Plan a template push from the current directory", RunE: func(cmd *cobra.Command, args []string) error { return nil }, } }