welcomecenterbot/tgbot/storage/__init__.py

10 lines
386 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
# сохраняет сессии и пересылаемые сообщения между перезагрузками
storage = redis.from_url(REDIS_URL)
# хранение необходимой информации о пользователях
Profile = ProfileObj(storage)