navidrome/model/user_props.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
243 B
Go
Raw Normal View History

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