Files
telegram-helper-bot/helper_bot/utils/state.py
2024-07-21 21:22:45 +03:00

15 lines
305 B
Python

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