(ctx context.Context, name string, value string, operator string)
| 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 | } |
| 15 |
no outgoing calls
no test coverage detected