--- Elasticsearch ---
| 431 | // --- Elasticsearch --- |
| 432 | |
| 433 | type trackedElasticsearch struct { |
| 434 | inner Elasticsearch |
| 435 | used map[string]bool |
| 436 | key string |
| 437 | } |
| 438 | |
| 439 | func (t *trackedElasticsearch) CreateIndex(ctx context.Context, index string, settings map[string]any) error { |
| 440 | markUsed(t.used, t.key) |
nothing calls this directly
no outgoing calls
no test coverage detected