Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Store ¶
type Store interface {
//Create creates and returns a session id for the given session
//or an error if one occurred
Create(s Session) (id string, err error)
//Read returns the session for the given id or nil if it doesn't exist
//or an error if one occurred
Read(id string) (Session, error)
}
Store is a session storage mechanism
Click to show internal directories.
Click to hide internal directories.