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

@ -28,10 +28,11 @@ import (
// delCmd represents the set command
var listDbsCmd = &cobra.Command{
Use: "list-dbs",
Short: "List all dbs.",
Args: cobra.NoArgs,
RunE: listDbs,
Use: "list-dbs",
Short: "List all dbs.",
Aliases: []string{"ls-dbs", "lsd"},
Args: cobra.NoArgs,
RunE: listDbs,
}
func listDbs(cmd *cobra.Command, args []string) error {