You've already forked Travel-Agent
feat: Reorganized project, added user registration, throttling middleware, help command, profile command
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
__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()
|
||||
Reference in New Issue
Block a user