From 7a4fd12911d202047410a974ae424f3130f23e31 Mon Sep 17 00:00:00 2001 From: Abhineet Jain Date: Mon, 20 Jun 2022 10:40:08 -0400 Subject: [PATCH] Alias `users` CLI subcommand as `user` (#2522) --- cli/users.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/users.go b/cli/users.go index 80df42ebf6..9e8e075b56 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(),