# app/tasks/celery_tasks/__init__.py """ Celery task modules for Wizamart. This package contains Celery task wrappers for background processing: - marketplace: Product import tasks - letzshop: Historical import tasks - subscription: Scheduled subscription management - export: Product export tasks - code_quality: Code quality scan tasks - test_runner: Test execution tasks """ from app.tasks.celery_tasks.base import DatabaseTask __all__ = ["DatabaseTask"]