(ctx context.Context, key string)
| 60 | |
| 61 | type SettingRepository interface { |
| 62 | Get(ctx context.Context, key string) (*Setting, error) |
| 63 | GetValue(ctx context.Context, key string) (string, error) |
| 64 | Set(ctx context.Context, key, value string) error |
| 65 | GetMultiple(ctx context.Context, keys []string) (map[string]string, error) |
no outgoing calls