welcomecenterbot/tgbot/storage/__init__.py
2023-04-24 09:14:35 +03:00

10 lines
447 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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)