(self, base_url: str, timeout: int = 120)
| 7 | |
| 8 | class Sam3ServiceClient: |
| 9 | def __init__(self, base_url: str, timeout: int = 120) -> None: |
| 10 | self.base_url = base_url.rstrip("/") |
| 11 | self.timeout = timeout |
| 12 | |
| 13 | def health(self) -> bool: |
| 14 | resp = requests.get(f"{self.base_url}/health", timeout=5) |
nothing calls this directly
no outgoing calls
no test coverage detected