# app/tasks/celery_tasks/letzshop.py """ Legacy Letzshop tasks. MIGRATED: All tasks have been migrated to app.modules.marketplace.tasks. New locations: - process_historical_import -> app.modules.marketplace.tasks.import_tasks - sync_vendor_directory -> app.modules.marketplace.tasks.sync_tasks Import from the new location: from app.modules.marketplace.tasks import ( process_historical_import, sync_vendor_directory, ) """ # Re-export from new location for backward compatibility from app.modules.marketplace.tasks.import_tasks import process_historical_import from app.modules.marketplace.tasks.sync_tasks import sync_vendor_directory __all__ = ["process_historical_import", "sync_vendor_directory"]