(oauth: OAuth)
| 46 | map: Map<string, UserCacheEntry>; |
| 47 | |
| 48 | constructor(oauth: OAuth) { |
| 49 | this.oauth = oauth; |
| 50 | this.map = new Map(); |
| 51 | } |
| 52 | |
| 53 | fetchUser(id: string): Promise<Record<string, any>> { |
| 54 | let entry = this.map.get(id); |
nothing calls this directly
no outgoing calls
no test coverage detected