(source string)
| 134 | } |
| 135 | |
| 136 | func tableForSource(source string) string { |
| 137 | if source == "maven" { |
| 138 | return "known_jars" |
| 139 | } |
| 140 | return "known_dlls" |
| 141 | } |
| 142 | |
| 143 | func importFromJSONLDir(ctx context.Context, ch *CHStore, dir string) error { |
| 144 | files, err := filepath.Glob(filepath.Join(dir, "*.jsonl")) |
nothing calls this directly
no outgoing calls
no test coverage detected