8 lines
198 B
Python
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)
|