15 lines
187 B
Go
15 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)
|
||
|
}
|