chore(cli): rename Cmd to Command (#12616)

I think Command is cleaner and my original decision to use "Cmd"
a mistake.

Plus this creates better parity with cobra.
This commit is contained in:
Ammar Bandukwala
2024-03-17 09:45:26 -05:00
committed by GitHub
parent 2a77580ba6
commit b4c0fa80d8
95 changed files with 313 additions and 311 deletions

View File

@ -5,15 +5,15 @@ import (
"github.com/coder/serpent"
)
func (r *RootCmd) users() *serpent.Cmd {
cmd := &serpent.Cmd{
func (r *RootCmd) users() *serpent.Command {
cmd := &serpent.Command{
Short: "Manage users",
Use: "users [subcommand]",
Aliases: []string{"user"},
Handler: func(inv *serpent.Invocation) error {
return inv.Command.HelpHandler(inv)
},
Children: []*serpent.Cmd{
Children: []*serpent.Command{
r.userCreate(),
r.userList(),
r.userSingle(),