Result of proxy connectivity test.
| 46 | |
| 47 | |
| 48 | class ProxyTestResult(BaseModel): |
| 49 | """Result of proxy connectivity test.""" |
| 50 | |
| 51 | success: bool |
| 52 | message: str |
| 53 | latency_ms: Optional[float] = None |
| 54 | |
| 55 | |
| 56 | def _load_config() -> ProxyConfig: |
no outgoing calls