Files
coder/cli/templateversions.go
Kyle Carberry 02ad3f14f5 chore: Rename Projects to Templates (#880)
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 🥂
2022-04-06 12:42:40 -05:00

16 lines
274 B
Go

package cli
import "github.com/spf13/cobra"
func templateVersions() *cobra.Command {
return &cobra.Command{
Use: "versions",
Aliases: []string{"version"},
RunE: func(cmd *cobra.Command, args []string) error {
return nil
},
}
}
// coder template versions