navidrome/engine/properties.go

13 lines
236 B
Go
Raw Normal View History

2016-03-09 00:40:16 +01:00
package engine
2016-03-02 15:07:24 +01:00
type Property struct {
Id string
Value string
}
type PropertyRepository interface {
Put(id string, value string) error
Get(id string) (string, error)
DefaultGet(id string, defaultValue string) (string, error)
}