(ctx context.Context, name string)
| 9 | |
| 10 | type ISettingService interface { |
| 11 | Get(ctx context.Context, name string) (value string, has bool) |
| 12 | Set(ctx context.Context, name string, value string, operator string) error |
| 13 | All(ctx context.Context) (map[string]string, error) |
| 14 | } |