| 65 | } |
| 66 | |
| 67 | interface CodemodeData { |
| 68 | repos: Repo[]; |
| 69 | users: User[]; |
| 70 | issues: Issue[]; |
| 71 | pulls: Pull[]; |
| 72 | } |
| 73 | |
| 74 | function loadData(): CodemodeData { |
| 75 | if (cachedData) return cachedData; |
nothing calls this directly
no outgoing calls
no test coverage detected