1234567891011121314151617181920212223242526272829 |
- package store
- import (
- "sync"
- "github.com/usememos/memos/server/profile"
- )
- // Store provides database access to all raw objects.
- type Store struct {
- Profile *profile.Profile
- driver Driver
- workspaceSettingCache sync.Map // map[string]*storepb.WorkspaceSetting
- userCache sync.Map // map[int]*User
- userSettingCache sync.Map // map[string]*storepb.UserSetting
- idpCache sync.Map // map[int]*storepb.IdentityProvider
- }
- // New creates a new instance of Store.
- func New(driver Driver, profile *profile.Profile) *Store {
- return &Store{
- driver: driver,
- Profile: profile,
- }
- }
- func (s *Store) Close() error {
- return s.driver.Close()
- }
|