soulsync/core/wishlist_service.py
Antti Kettunen f32fc9d56e
Extract wishlist logic into dedicated package
- 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
2026-04-28 21:17:24 +03:00

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