# app/tasks/__init__.py """ Task dispatcher for Celery background tasks. All Celery tasks are defined in their respective modules: - app.modules.marketplace.tasks: Import/export/sync tasks - app.modules.billing.tasks: Subscription management tasks - app.modules.dev_tools.tasks: Code quality and test runner tasks - app.modules.monitoring.tasks: Capacity monitoring tasks Use the task_dispatcher for dispatching tasks from API routes: from app.tasks import task_dispatcher task_id = task_dispatcher.dispatch_marketplace_import(...) """ from app.tasks.dispatcher import task_dispatcher, TaskDispatcher __all__ = ["task_dispatcher", "TaskDispatcher"]