6 lines
125 B
Python
6 lines
125 B
Python
|
from aiogram.dispatcher.filters.state import State, StatesGroup
|
||
|
|
||
|
|
||
|
class ProjectStates(StatesGroup):
|
||
|
set_fields = State()
|