[#1216] neofs-cli: Allow to create and save session token
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
This commit is contained in:
parent
8d79168129
commit
a95bdb1811
4 changed files with 155 additions and 29 deletions
14
cmd/neofs-cli/modules/session/root.go
Normal file
14
cmd/neofs-cli/modules/session/root.go
Normal 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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue