(path: &Path)
| 75 | } |
| 76 | |
| 77 | fn file_name_string(path: &Path) -> String { |
| 78 | path.file_name() |
| 79 | .and_then(|n| n.to_str()) |
| 80 | .unwrap_or("unknown") |
| 81 | .to_string() |
| 82 | } |
| 83 | |
| 84 | /// Classify a `.jsonl` file under `projects/` into transcript metadata. |
| 85 | fn classify_project_file(path: &Path, projects_dir: &Path) -> Option<TranscriptFile> { |
no outgoing calls
no test coverage detected