change architecture and swap from httpx to aiohttp

This commit is contained in:
Кобылкевич Фёдор 2026-04-07 22:49:06 +03:00
parent eca29af5e1
commit 7a76d1e21a
18 changed files with 349 additions and 60 deletions

View file

@ -0,0 +1,8 @@
from typing import Any, Protocol
class BrowserRpcError(RuntimeError): ...
class BrowserRpcRunner(Protocol):
async def run(self, task: str, timeout_sec: float) -> dict[str, Any]: ...