forked from TrueCloudLab/frostfs-node
[#624] cli/util: Sync command description's capitalization
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
8fac4acd78
commit
dc12202757
1 changed files with 6 additions and 6 deletions
|
@ -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,
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue