mattermost/server/public/pluginapi/experimental/panel/settings/store.go
2025-03-31 10:44:34 +02:00

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)
}