8 lines
229 B
Python
8 lines
229 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
class Registration(StatesGroup):
|
|
waiting_for_sphere = State()
|
|
waiting_for_custom_sphere = State()
|
|
waiting_for_language = State()
|
|
waiting_for_preferences = State()
|