add ls alias (#152)

This commit is contained in:
Patrick Devine 2023-07-20 15:28:27 -07:00 committed by GitHub
parent 50e8e5bdbe
commit a3badaf103
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -424,6 +424,7 @@ func NewCLI() *cobra.Command {
listCmd := &cobra.Command{
Use: "list",
Aliases: []string{"ls"},
Short: "List models",
RunE: list,
}