| 68 | } |
| 69 | |
| 70 | interface CodemodeData { |
| 71 | repos: Repo[]; |
| 72 | users: User[]; |
| 73 | issues: Issue[]; |
| 74 | pulls: Pull[]; |
| 75 | } |
| 76 | |
| 77 | // Track data as we process |
| 78 | const reposMap = new Map<string, Repo>(); |
nothing calls this directly
no outgoing calls
no test coverage detected