From 4bf3d601408ef4e7d98c8315bdc86aa1a98e149d Mon Sep 17 00:00:00 2001 From: lew Date: Wed, 19 Nov 2025 12:45:37 +0000 Subject: [PATCH] feat(listDbsCmd): lsd alias --- cmd/list-dbs.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/list-dbs.go b/cmd/list-dbs.go index 07fcd77..bd01435 100644 --- a/cmd/list-dbs.go +++ b/cmd/list-dbs.go @@ -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 {