| 117 | |
| 118 | |
| 119 | class AbstractApiClient(ABC): |
| 120 | |
| 121 | @abstractmethod |
| 122 | async def request(self, method, url, **kwargs): |
| 123 | pass |
| 124 | |
| 125 | @abstractmethod |
| 126 | async def update_cookies(self, browser_context: BrowserContext): |
| 127 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected