7 lines
142 B
Python
7 lines
142 B
Python
from aiogram.dispatcher.filters.state import State, StatesGroup
|
|
|
|
|
|
class ProjectStates(StatesGroup):
|
|
create = State()
|
|
search = State()
|