8 lines
167 B
Python
8 lines
167 B
Python
from __future__ import annotations
|
|
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class SettingsState(StatesGroup):
|
|
menu = State()
|
|
soul_editing = State()
|