()
| 3208 | let httpApiClientInstance: HttpApiClient | null = null; |
| 3209 | |
| 3210 | export function getHttpApiClient(): HttpApiClient { |
| 3211 | if (!httpApiClientInstance) { |
| 3212 | httpApiClientInstance = new HttpApiClient(); |
| 3213 | } |
| 3214 | return httpApiClientInstance; |
| 3215 | } |
| 3216 | |
| 3217 | // Start API key initialization immediately when this module is imported |
| 3218 | // This ensures the init promise is created early, even before React components mount |
no outgoing calls
no test coverage detected