package models const ( AuthCookieName = "hugocrm_auth" PrefCookieName = "hugocrm_pref" ) type AuthCookie struct { UserID int64 `json:"uid"` } type PrefCookie struct { SiteID int64 `json:"siteId"` }