feat(listDbsCmd): lsd alias

This commit is contained in:
Lewis Wynne 2025-11-19 12:45:37 +00:00
parent 323c4d915a
commit 4bf3d60140

View file

@ -30,6 +30,7 @@ import (
var listDbsCmd = &cobra.Command{ var listDbsCmd = &cobra.Command{
Use: "list-dbs", Use: "list-dbs",
Short: "List all dbs.", Short: "List all dbs.",
Aliases: []string{"ls-dbs", "lsd"},
Args: cobra.NoArgs, Args: cobra.NoArgs,
RunE: listDbs, RunE: listDbs,
} }