# README
sessions
Store Implementations
Other implementations of the sessions.Store interface:
- redistore - store sessions in Redis
# Functions
GetRegistry returns a registry instance for the current request.
NewCookie returns an http.Cookie with the options set.
NewCookieStore returns a new CookieStore.
NewFilesystemStore returns a new FilesystemStore.
NewSession is called by session stores to create a new session instance.
Save saves all sessions used during the current request.
# Structs
CookieStore stores sessions using secure cookies.
FilesystemStore stores sessions in the filesystem.
Options stores configuration for a session or session store.
Registry stores sessions used during a request.
Session stores the values and optional configuration for a session.
# Interfaces
Store is an interface for custom session stores.
# Type aliases
MultiError stores multiple errors.