diff --git a/tests/test.py b/tests/test.py deleted file mode 100644 index 03de066..0000000 --- a/tests/test.py +++ /dev/null @@ -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())