| 68 | |
| 69 | // Metadata collection interfaces |
| 70 | interface Metadata { |
| 71 | analyzedFiles: number; |
| 72 | gitBranch: string | null; |
| 73 | gitCommit: string | null; |
| 74 | searchDirectory: string; |
| 75 | timestamp: string; |
| 76 | totalFiles: number; |
| 77 | } |
| 78 | |
| 79 | // Metadata collection functions |
| 80 | function getGitInfo(): { |
nothing calls this directly
no outgoing calls
no test coverage detected