7 lines
134 B
Python
7 lines
134 B
Python
|
from aiogram.dispatcher.filters.state import StatesGroup,State
|
||
|
|
||
|
|
||
|
class States(StatesGroup):
|
||
|
state1 = State()
|
||
|
state2 = State()
|