| 13 | ) |
| 14 | |
| 15 | type typeProvider struct { |
| 16 | schemas map[string]bigquery.Schema |
| 17 | } |
| 18 | |
| 19 | func NewTypeProvider(schemas map[string]bigquery.Schema) *typeProvider { |
| 20 | return &typeProvider{schemas: schemas} |
nothing calls this directly
no outgoing calls
no test coverage detected