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