2020-01-14 18:22:34 -09:00
|
|
|
package model
|
2016-03-02 05:07:24 -09:00
|
|
|
|
|
|
|
|
type PropertyRepository interface {
|
|
|
|
|
Put(id string, value string) error
|
|
|
|
|
Get(id string) (string, error)
|
2021-06-18 14:27:15 -08:00
|
|
|
Delete(id string) error
|
2016-03-02 05:07:24 -09:00
|
|
|
DefaultGet(id string, defaultValue string) (string, error)
|
|
|
|
|
}
|