| 21 | All(ctx context.Context) ([]*Setting, error) |
| 22 | } |
| 23 | type imlSettingStore struct { |
| 24 | store.Store[Setting] |
| 25 | } |
| 26 | |
| 27 | func (i *imlSettingStore) All(ctx context.Context) ([]*Setting, error) { |
| 28 | return i.Store.List(ctx, nil) |
nothing calls this directly
no outgoing calls
no test coverage detected