subscriptions/states.py

11 lines
281 B
Python
Raw Normal View History

2024-08-16 05:42:00 +00:00
from aiogram.fsm.state import State, StatesGroup
class QuestionStates(StatesGroup):
"""Состояние, ожидания от пользователя."""
waiting_for_question = State()
waiting_for_hash = State()
count_flow = State()
payment_id = State()