| 3 | |
| 4 | // HTTP 客户端配置 |
| 5 | interface HTTPConfig { |
| 6 | baseURL: string; |
| 7 | headers: Record<string, string>; |
| 8 | } |
| 9 | |
| 10 | const HTTP_CONFIG: HTTPConfig = { |
| 11 | baseURL: 'https://daily-cloudcode-pa.sandbox.googleapis.com', // 默认使用沙盒环境 |
nothing calls this directly
no outgoing calls
no test coverage detected