separated clients handlers, cart->checkout ppline

This commit is contained in:
2026-02-11 20:53:47 +07:00
parent 6409d66dfd
commit a3aaafd7ac
20 changed files with 658 additions and 369 deletions

7
misc/states.py Normal file
View File

@@ -0,0 +1,7 @@
from aiogram.fsm.state import StatesGroup, State
class CheckoutStorage(StatesGroup):
name = State()
phone = State()
address = State()