- add core/wishlist as the home for wishlist payload, resolution, state, processing, reporting, and selection helpers - move wishlist-specific tests into tests/wishlist alongside the new package layout - keep web_server.py and the import/search callers as thin adapters for now
5 lines
190 B
Python
5 lines
190 B
Python
"""Compatibility shim for legacy wishlist service imports."""
|
|
|
|
from core.wishlist.service import WishlistService, get_wishlist_service
|
|
|
|
__all__ = ["WishlistService", "get_wishlist_service"]
|