feat: implement user setting store

This commit is contained in:
Steven
2023-06-21 08:51:15 +08:00
parent 0ca88fac00
commit bd627fb250
3 changed files with 141 additions and 0 deletions

View File

@ -14,6 +14,7 @@ type Store struct {
workspaceSettingCache sync.Map // map[string]*WorkspaceSetting
userCache sync.Map // map[int]*User
userSettingCache sync.Map // map[string]*UserSetting
shortcutCache sync.Map // map[int]*Shortcut
}