Files
telegram-helper-bot/helper_bot/utils/state.py
2026-02-01 22:49:25 +03:00

16 lines
331 B
Python

from aiogram.fsm.state import State, StatesGroup
class StateUser(StatesGroup):
START = State()
SUGGEST = State()
ADMIN = State()
CHAT = State()
PRE_CHAT = State()
PRE_BAN = State()
PRE_BAN_ID = State()
BAN_2 = State()
BAN_3 = State()
BAN_4 = State()
BAN_FINAL = State()