gophertype/pkg/session/keys.go
2019-11-25 19:55:28 -08:00

12 lines
298 B
Go

package session
// Key is a session context key.
type Key int
// Session key definitions.
const (
SessionKey Key = iota // The request's cookie session object.
UserKey // The request's user data for logged-in user.
StartTimeKey // The start time of the request.
)