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

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
remotes/fyrchik/meta-pebble
Pavel Karpy 2021-06-18 09:43:55 +03:00 committed by Alex Vanin
parent 8fac4acd78
commit dc12202757
1 changed files with 6 additions and 6 deletions

View File

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