fix: add cart identity stub for product blueprint
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 40s
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 40s
Product routes lazily import current_cart_identity from cart.services. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1 +1,2 @@
|
|||||||
from .total import total
|
from .total import total
|
||||||
|
from .identity import CartIdentity, current_cart_identity
|
||||||
|
|||||||
4
bp/cart/services/identity.py
Normal file
4
bp/cart/services/identity.py
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
# Re-export from canonical shared location
|
||||||
|
from shared.cart_identity import CartIdentity, current_cart_identity
|
||||||
|
|
||||||
|
__all__ = ["CartIdentity", "current_cart_identity"]
|
||||||
Reference in New Issue
Block a user