| 45 | ) |
| 46 | |
| 47 | type Provider struct { |
| 48 | vectorsLock sync.RWMutex |
| 49 | registered map[string]modulecapabilities.Module |
| 50 | altNames map[string]string |
| 51 | schemaGetter schemaGetter |
| 52 | hasMultipleVectorizers bool |
| 53 | targetVectorNameValidator *regexp.Regexp |
| 54 | logger logrus.FieldLogger |
| 55 | cfg config.Config |
| 56 | } |
| 57 | |
| 58 | type schemaGetter interface { |
| 59 | ReadOnlyClass(name string) *models.Class |
nothing calls this directly
no outgoing calls
no test coverage detected