forked from TrueCloudLab/frostfs-node
[#1261] neofs-cli: Allow to create bearer tokens
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
ae8e38cace
commit
9b2523a408
3 changed files with 114 additions and 0 deletions
14
cmd/neofs-cli/modules/token/root.go
Normal file
14
cmd/neofs-cli/modules/token/root.go
Normal file
|
@ -0,0 +1,14 @@
|
|||
package token
|
||||
|
||||
import (
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var Cmd = &cobra.Command{
|
||||
Use: "token",
|
||||
Short: "Operations with bearer token",
|
||||
}
|
||||
|
||||
func init() {
|
||||
Cmd.AddCommand(createCmd)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue