6 lines
146 B
Python
6 lines
146 B
Python
# bot/states/form.py
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
class StartForm(StatesGroup):
|
|
waiting_for_application: State = State()
|