13 lines
283 B
Python
13 lines
283 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
from aiogram.fsm.state import StatesGroup, State
|
|
|
|
class SupportState(StatesGroup):
|
|
|
|
waiting_message = State()
|
|
|
|
class GroupState(StatesGroup):
|
|
waiting_group = State()
|
|
|
|
class AdminState(StatesGroup):
|
|
|
|
waiting_reply = State() |