6 lines
108 B
Python
6 lines
108 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class StartDialogState(StatesGroup):
|
|
start = State()
|