Archived
1
0
Fork 0

Delete get.py

This commit is contained in:
yzhh 2021-01-09 19:58:10 +08:00
parent 20c8e67489
commit b4dfd3dcb7

View file

@ -1,8 +0,0 @@
import aiohttp
async def main(url):
async with aiohttp.ClientSession() as session:
async with session.get(url, timeout=aiohttp.ClientTimeout(total=20)) as req:
return await req.text()
command = {'get': 'get'}