TelegramPoster/modules/http_client.py

7 lines
117 B
Python
Raw Normal View History

2023-03-22 12:02:55 +02:00
from aiohttp import ClientSession
from ujson import dumps
http_session = ClientSession(
json_serialize=dumps,
)