mirror of
https://github.com/coder/coder.git
synced 2025-07-08 11:39:50 +00:00
Customer feedback indicated projects was a confusing name.
After querying the team internally, it seemed unanimous
that it is indeed a confusing name.
Here's for a lil less confusion @ashmeer7 🥂
17 lines
315 B
Go
17 lines
315 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func templatePlan() *cobra.Command {
|
|
return &cobra.Command{
|
|
Use: "plan <directory>",
|
|
Args: cobra.MinimumNArgs(1),
|
|
Short: "Plan a template update from the current directory",
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
return nil
|
|
},
|
|
}
|
|
}
|