quintodrome/model/properties.go

9 lines
206 B
Go
Raw Normal View History

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)
Delete(id string) error
2016-03-02 05:07:24 -09:00
DefaultGet(id string, defaultValue string) (string, error)
}