6 lines
143 B
Python
6 lines
143 B
Python
# bot/states/union_states.py
|
|
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
class UnionStates(StatesGroup):
|
|
waiting_for_union = State()
|