8 lines
159 B
Python
8 lines
159 B
Python
from aiogram.fsm.state import State, StatesGroup
|
|
|
|
|
|
class SubscriptionStorage(StatesGroup):
|
|
devices = State()
|
|
duration = State()
|
|
checkout = State()
|