Files
wehub-resource-sync 41b710f9c7
CI / Frontend checks (push) Failing after 0s
CI / Backend tests (push) Failing after 1s
I18n Documentation Sync / sync-docs (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:28:40 +08:00

37 lines
765 B
Python

"""
任务模块
包含所有异步任务定义
"""
# 移除通配导入,避免过早触发celery_app导入链
__all__ = [
# 处理任务
'process_video_pipeline',
'process_single_step',
'retry_processing_step',
# 视频任务
'extract_video_clips',
'generate_video_collections',
'optimize_video_quality',
# 通知任务
'send_processing_notification',
'send_error_notification',
'send_completion_notification',
# 维护任务
'cleanup_expired_tasks',
'health_check',
'backup_project_data',
# 数据清理任务
'cleanup_expired_data',
'check_data_consistency',
'cleanup_orphaned_data',
# 投稿任务
'upload_clip_task',
'batch_upload_task'
]