refactor: delete legacy app/services/cart_service.py

No remaining imports from legacy location - safe to delete.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 08:25:56 +01:00
parent 6026f6ab89
commit 88a4184564

View File

@@ -1,13 +0,0 @@
# app/services/cart_service.py
"""
LEGACY LOCATION - This file re-exports from the canonical module location.
Canonical location: app/modules/cart/services/
This file exists for backward compatibility. New code should import from:
from app.modules.cart.services import cart_service
"""
from app.modules.cart.services.cart_service import cart_service, CartService
__all__ = ["cart_service", "CartService"]