From 34b836cf35c757fe75b4b85653dab35f8acb2fe4 Mon Sep 17 00:00:00 2001 From: Abhineet Jain Date: Mon, 20 Jun 2022 14:13:52 +0000 Subject: [PATCH] alias users as user --- cli/users.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/users.go b/cli/users.go index 80df42ebf6787..9e8e075b56082 100644 --- a/cli/users.go +++ b/cli/users.go @@ -12,8 +12,9 @@ import ( func users() *cobra.Command { cmd := &cobra.Command{ - Short: "Create, remove, and list users", - Use: "users", + Short: "Create, remove, and list users", + Use: "users", + Aliases: []string{"user"}, } cmd.AddCommand( userCreate(),