Add project docs

This commit is contained in:
EG
2026-07-01 17:37:22 +03:00
parent e821d29d9e
commit 4b31a29b49
2 changed files with 18 additions and 0 deletions
-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())