()
| 95 | let authManager: AuthManager |
| 96 | |
| 97 | export function getAuthManager(): AuthManager { |
| 98 | // First try to get from module, fallback to local variable for backwards compat |
| 99 | return getAuthManagerFromModule() || authManager |
| 100 | } |
| 101 | |
| 102 | // Handle auth code from deep link (exported for IPC handlers) |
| 103 | export async function handleAuthCode(code: string): Promise<void> { |
no outgoing calls
no test coverage detected