From b424b4ce77d98333a39b4e5ac4b80b853e95f1be Mon Sep 17 00:00:00 2001 From: EG Date: Wed, 1 Jul 2026 17:46:28 +0300 Subject: [PATCH] deleted: tests/test.py --- tests/test.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 tests/test.py 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())