[#1261] neofs-cli: Allow to create bearer tokens

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2022-03-23 15:47:34 +03:00 committed by Alex Vanin
parent ae8e38cace
commit 9b2523a408
3 changed files with 114 additions and 0 deletions

View 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)
}