12345678910111213141516171819202122232425262728293031 |
- package models
- import (
- "git.listensoft.net/tool/jspkit/common/variable"
- "github.com/go-rod/rod/lib/proto"
- )
- type SsoSession struct {
- Cookies []*proto.NetworkCookieParam
- LocalStorage map[string]string
- }
- type SessionInfo struct {
- URL string
- Selector string
- SelectorValue string
- Cookies string
- Area variable.Area
- Api bool
- ApiURL string
- ApiMethod string
- ApiParam string
- ApiHeader map[string]string
- Valid int
- }
- type SessionServerRes struct {
- Key string
- Value []SessionInfo
- Valid int
- }
|