Files
Раис Юсупалиев adfa3e26de 001 Project structure
2026-03-07 13:41:30 +03:00

8 lines
198 B
Python

"""Controller-level HTTP client factory."""
from httpx import AsyncClient
def build_controller_http_client(timeout_seconds: float) -> AsyncClient:
return AsyncClient(timeout=timeout_seconds)