6 lines
124 B
Python
6 lines
124 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class UserPromoStates(StatesGroup):
|
|
waiting_for_promo_code = State()
|