feat: Reorganized project, added user registration, throttling middleware, help command, profile command

This commit is contained in:
ITQ
2024-03-20 20:53:43 +03:00
parent 7086a1cf52
commit 6d755490d6
21 changed files with 603 additions and 44 deletions
+15
View File
@@ -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()