Files
coder/cli/exp_scaletest_slim.go
Ammar Bandukwala b4c0fa80d8 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.
2024-03-17 09:45:26 -05:00

19 lines
350 B
Go

//go:build slim
package cli
import "github.com/coder/serpent"
func (r *RootCmd) scaletestCmd() *serpent.Command {
cmd := &serpent.Command{
Use: "scaletest",
Short: "Run a scale test against the Coder API",
Handler: func(inv *serpent.Invocation) error {
SlimUnsupported(inv.Stderr, "exp scaletest")
return nil
},
}
return cmd
}