[#1216] neofs-cli: Allow to create and save session token

Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
Evgenii Stratonikov 2022-03-28 13:32:18 +03:00 committed by LeL
parent 8d79168129
commit a95bdb1811
4 changed files with 155 additions and 29 deletions

View file

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