| 14 | var _ IServiceDelete = (*imlServiceDelete[any])(nil) |
| 15 | |
| 16 | type IServiceDelete interface { |
| 17 | Delete(ctx context.Context, uuid string) error |
| 18 | } |
| 19 | |
| 20 | type imlServiceDelete[E any] struct { |
| 21 | store store.ISearchStore[E] |
nothing calls this directly
no outgoing calls
no test coverage detected