You've already forked Travel-Agent
16 lines
280 B
Python
16 lines
280 B
Python
__all__ = ("RegistrationForm",)
|
|
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class RegistrationForm(StatesGroup):
|
|
username = State()
|
|
age = State()
|
|
bio = State()
|
|
sex = State()
|
|
location = State()
|
|
|
|
|
|
class UserAltering(StatesGroup):
|
|
new_value = State()
|