mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-01 19:47:37 +03:00
8 lines
243 B
Go
8 lines
243 B
Go
package model
|
|
|
|
type UserPropsRepository interface {
|
|
Put(userId, key string, value string) error
|
|
Get(userId, key string) (string, error)
|
|
Delete(userId, key string) error
|
|
DefaultGet(userId, key string, defaultValue string) (string, error)
|
|
}
|