[#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:
parent
bd27837364
commit
fd8c00400d
3 changed files with 5 additions and 5 deletions
14
cmd/neofs-cli/modules/bearer/root.go
Normal file
14
cmd/neofs-cli/modules/bearer/root.go
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue