(data: Dict)
| 26 | |
| 27 | |
| 28 | async def verify_credentials(data: Dict): |
| 29 | async with aiohttp.ClientSession() as session: |
| 30 | request_url = f"{Config.BASE_URL}/verify_credentials" |
| 31 | response = await session.post(request_url, json=data) |
| 32 | return ResponseWrapper(response.status, await response.json()) |
| 33 | |
| 34 | |
| 35 | async def caches(): |