[#624] cli/util: Sync command description's capitalization

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
Pavel Karpy 2021-06-18 09:43:55 +03:00 committed by Alex Vanin
parent 8fac4acd78
commit dc12202757

View file

@ -32,35 +32,35 @@ var (
signCmd = &cobra.Command{ signCmd = &cobra.Command{
Use: "sign", Use: "sign",
Short: "sign NeoFS structure", Short: "Sign NeoFS structure",
} }
signBearerCmd = &cobra.Command{ signBearerCmd = &cobra.Command{
Use: "bearer-token", Use: "bearer-token",
Short: "sign bearer token to use it in requests", Short: "Sign bearer token to use it in requests",
RunE: signBearerToken, RunE: signBearerToken,
} }
signSessionCmd = &cobra.Command{ signSessionCmd = &cobra.Command{
Use: "session-token", Use: "session-token",
Short: "sign session token to use it in requests", Short: "Sign session token to use it in requests",
RunE: signSessionToken, RunE: signSessionToken,
} }
convertCmd = &cobra.Command{ convertCmd = &cobra.Command{
Use: "convert", Use: "convert",
Short: "convert representation of NeoFS structures", Short: "Convert representation of NeoFS structures",
} }
convertEACLCmd = &cobra.Command{ convertEACLCmd = &cobra.Command{
Use: "eacl", Use: "eacl",
Short: "convert representation of extended ACL table", Short: "Convert representation of extended ACL table",
RunE: convertEACLTable, RunE: convertEACLTable,
} }
keyerCmd = &cobra.Command{ keyerCmd = &cobra.Command{
Use: "keyer", Use: "keyer",
Short: "generate or print information about keys", Short: "Generate or print information about keys",
RunE: processKeyer, RunE: processKeyer,
} }
) )