2021-06-23 12:47:32 -08:00
|
|
|
package model
|
|
|
|
|
|
|
|
|
|
type UserPropsRepository interface {
|
2021-06-25 18:21:37 -08:00
|
|
|
Put(userId, key string, value string) error
|
|
|
|
|
Get(userId, key string) (string, error)
|
|
|
|
|
Delete(userId, key string) error
|
|
|
|
|
DefaultGet(userId, key string, defaultValue string) (string, error)
|
2021-06-23 12:47:32 -08:00
|
|
|
}
|