(ctx context.Context, name string, value string, operator string)
| 18 | type ISettingStore interface { |
| 19 | Get(ctx context.Context, name string) (*Setting, error) |
| 20 | Set(ctx context.Context, name string, value string, operator string) error |
| 21 | All(ctx context.Context) ([]*Setting, error) |
| 22 | } |
| 23 | type imlSettingStore struct { |
no outgoing calls
no test coverage detected