mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
7 lines
224 B
Go
7 lines
224 B
Go
package settings
|
|
|
|
// SettingStore defines the behavior needed to set and get settings
|
|
type SettingStore interface {
|
|
SetSetting(userID, settingID string, value any) error
|
|
GetSetting(userID, settingID string) (any, error)
|
|
}
|