First commit
This commit is contained in:
2
bot/states/__init__.py
Normal file
2
bot/states/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
from .anketa_states import *
|
||||
from .new_states import *
|
||||
5
bot/states/anketa_states.py
Normal file
5
bot/states/anketa_states.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# bot/states/form.py
|
||||
from aiogram.fsm.state import State, StatesGroup
|
||||
|
||||
class StartForm(StatesGroup):
|
||||
waiting_for_application = State()
|
||||
10
bot/states/new_states.py
Normal file
10
bot/states/new_states.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# bot/states/new_states.py
|
||||
from aiogram.fsm.state import State, StatesGroup
|
||||
|
||||
__all__ = ("NewStates",)
|
||||
|
||||
class NewStates(StatesGroup):
|
||||
role: State = State()
|
||||
sorol: State = State()
|
||||
code_phrase: State = State()
|
||||
rules: State = State()
|
||||
5
bot/states/union_states.py
Normal file
5
bot/states/union_states.py
Normal file
@@ -0,0 +1,5 @@
|
||||
# bot/states/union_states.py
|
||||
from aiogram.fsm.state import State, StatesGroup
|
||||
|
||||
class UnionStates(StatesGroup):
|
||||
waiting_for_union = State()
|
||||
Reference in New Issue
Block a user