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