(ctx context.Context, r *[]T, batchSize int)
| 228 | } |
| 229 | |
| 230 | func (c createG[T]) CreateInBatches(ctx context.Context, r *[]T, batchSize int) error { |
| 231 | return c.g.apply(ctx).CreateInBatches(r, batchSize).Error |
| 232 | } |
| 233 | |
| 234 | type chainG[T any] struct { |
| 235 | execG[T] |
nothing calls this directly
no test coverage detected