welcomecenterbot/tgbot/storage/__init__.py

10 lines
447 B
Python
Raw Normal View History

2023-04-23 16:54:58 +00:00
import redis
from tgbot.storage.profile import Profile as ProfileObj
from tgbot.config import REDIS_URL
2023-04-24 06:14:35 +00:00
# сохраняет сессии, айди кнопок в чатах для удаления и пересылаемые сообщения между перезагрузками
2023-04-23 16:54:58 +00:00
storage = redis.from_url(REDIS_URL)
# хранение необходимой информации о пользователях
Profile = ProfileObj(storage)