mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-28 01:12:17 +03:00
13 lines
236 B
Go
13 lines
236 B
Go
package engine
|
|
|
|
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)
|
|
}
|