| 6 | |
| 7 | // User session interface |
| 8 | export interface UserSession { |
| 9 | login: string; |
| 10 | accessToken: string; |
| 11 | refreshToken?: string; |
| 12 | expiresAt?: Date | null; |
| 13 | tokenType?: string; |
| 14 | createdAt: Date; |
| 15 | } |
| 16 | |
| 17 | export async function handleGithubAuth(req: BunRequest) { |
| 18 | console.log("Handling GitHub authentication..."); |
nothing calls this directly
no outgoing calls
no test coverage detected