hugo-cms/models/cookie.go

10 lines
114 B
Go

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