diff --git a/util/util.go b/util/util.go index 60ccf8e..e2b924e 100644 --- a/util/util.go +++ b/util/util.go @@ -119,17 +119,9 @@ func MustGenerateRandomHex(length int) string { } type FileCookie struct { - Domain string `json:"domain"` - ExpirationDate float64 `json:"expirationDate"` - HostOnly bool `json:"hostOnly"` - HttpOnly bool `json:"httpOnly"` - Name string `json:"name"` - Path string `json:"path"` - SameSite string `json:"sameSite"` - Secure bool `json:"secure"` - Session bool `json:"session"` - StoreId interface{} `json:"storeId"` - Value string `json:"value"` + Name string `json:"name"` + Value string `json:"value"` + Domain string `json:"domain"` } func ReadCookiesFile() (map[string]string, error) {