You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 3, 2023. It is now read-only.
// Cookie is stored in the database and identified by a key stored in a http.cookie. This key can then be used to fetch a User via the TwitchID as an identifier
type Cookie struct {
TwitchID string `json:"twitch_id,omitempty"`
Expiry time.Time `json:"expiry,omitempty"`
}
// store stores a Cookie struct in the database using a key as an identifier, this key would be stored in a http.cookie