11 lines
246 B
Python
11 lines
246 B
Python
# 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()
|