8 lines
148 B
Python
8 lines
148 B
Python
from aiogram.fsm.state import StatesGroup, State
|
|
|
|
|
|
class CheckoutStorage(StatesGroup):
|
|
name = State()
|
|
phone = State()
|
|
address = State()
|