navidrome/model/properties.go
2024-05-12 21:37:42 -04:00

8 lines
206 B
Go

package model
type PropertyRepository interface {
Put(id string, value string) error
Get(id string) (string, error)
Delete(id string) error
DefaultGet(id string, defaultValue string) (string, error)
}