[#1216] neofs-cli: Rename token subcommand to bearer

It works only with the bearer token.

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2022-03-28 12:09:49 +03:00 committed by LeL
parent bd27837364
commit fd8c00400d
3 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,14 @@
package bearer
import (
"github.com/spf13/cobra"
)
var Cmd = &cobra.Command{
Use: "bearer",
Short: "Operations with bearer token",
}
func init() {
Cmd.AddCommand(createCmd)
}