6 lines
109 B
Python
6 lines
109 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class AuthState(StatesGroup):
|
|
advertiser_id = State()
|