fix: add cart identity stub for product blueprint
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:
giles
2026-02-10 01:18:53 +00:00
parent efe769a0fc
commit 88c38c0e74
2 changed files with 5 additions and 0 deletions

View File

@@ -1 +1,2 @@
from .total import total from .total import total
from .identity import CartIdentity, current_cart_identity

View 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"]