| 2 | |
| 3 | // User session interface |
| 4 | export interface UserSession { |
| 5 | login: string; |
| 6 | accessToken: string; |
| 7 | refreshToken?: string; |
| 8 | expiresAt?: Date; |
| 9 | tokenType?: string; |
| 10 | octokit: Octokit; |
| 11 | } |
| 12 | |
| 13 | // In-memory storage (replace with database for production) |
| 14 | class TokenStorage { |
nothing calls this directly
no outgoing calls
no test coverage detected