Versions in this module Expand all Collapse all v1 v1.1.1 Aug 6, 2021 Changes in this version + var DefaultSessionOpts = &sessions.Options + var SessionDataKeyName = "session_data" + var SessionExpiresName = "session_expires_at" + var SessionIdHashKeyName = "session_id" + type Store struct + Codecs []securecookie.Codec + Options *sessions.Options + Table *table.Table + UseSessionCookie bool + func New(dynamodbAPI dynamodbiface.DynamoDBAPI, tableName string, keyPairs ...[]byte) *Store + func (s *Store) Get(r *http.Request, name string) (*sessions.Session, error) + func (s *Store) MaxAge(age int) + func (s *Store) New(r *http.Request, name string) (*sessions.Session, error) + func (s *Store) Save(r *http.Request, w http.ResponseWriter, session *sessions.Session) error