923f84722a
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
14 lines
187 B
Go
14 lines
187 B
Go
package session
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var Cmd = &cobra.Command{
|
|
Use: "session",
|
|
Short: "Operations with session token",
|
|
}
|
|
|
|
func init() {
|
|
Cmd.AddCommand(createCmd)
|
|
}
|