deleted: tests/test.py

This commit is contained in:
EG
2026-07-01 17:46:28 +03:00
parent ede367dbde
commit b424b4ce77
-10
View File
@@ -1,10 +0,0 @@
import aiohttp
import asyncio
async def main():
async with aiohttp.ClientSession(trust_env=True) as session:
async with session.get("https://discord.com/api/v10") as r:
print(r.status)
print(await r.text())
asyncio.run(main())