10 lines
194 B
Python
10 lines
194 B
Python
from aiogram.fsm.state import StatesGroup, State
|
|
|
|
|
|
class ExecuteCommandsSteps(StatesGroup):
|
|
EXECUTE = State()
|
|
|
|
|
|
class FavoritesCommandsSteps(StatesGroup):
|
|
ADD = State()
|
|
DEL = State() |