Changed aiohttp module location

This commit is contained in:
Profitroll
2023-03-22 11:02:55 +01:00
parent 45789ad013
commit 5ad52aa3f8
2 changed files with 8 additions and 6 deletions

6
modules/http_client.py Normal file
View File

@@ -0,0 +1,6 @@
from aiohttp import ClientSession
from ujson import dumps
http_session = ClientSession(
json_serialize=dumps,
)