(ctx context.Context)
| 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 { |
| 24 | store.Store[Setting] |
no outgoing calls
no test coverage detected