Versions in this module Expand all Collapse all v1 v1.2.0 Jan 21, 2019 v1.1.0 Jan 6, 2019 Changes in this version + type MongoStore struct + func NewMongoStore(conn *mongo.Connection, key string) *MongoStore + func (m *MongoStore) Admins(siteID string) (ids []string) + func (m *MongoStore) Email(siteID string) (email string) + func (m *MongoStore) Key() (key string, err error) + type StaticStore struct + func NewStaticKeyStore(key string) *StaticStore + func NewStaticStore(key string, admins []string, email string) *StaticStore + func (s *StaticStore) Admins(string) (ids []string) + func (s *StaticStore) Email(string) (email string) + func (s *StaticStore) Key() (key string, err error) + type Store interface + Admins func(siteID string) (ids []string) + Email func(siteID string) (email string) + Key func() (key string, err error)