35 lines
811 B
Python
35 lines
811 B
Python
"""
|
|
后台任务模块统一导出入口
|
|
保持向后兼容,所有原有导入方式仍然有效
|
|
"""
|
|
# 通用功能
|
|
from app.tasks.common import update_jiandaoyun, approve_workflow
|
|
|
|
# 品牌相关任务
|
|
from app.tasks.brand_tasks import create_brand_background
|
|
|
|
# 删除相关任务
|
|
from app.tasks.delete_tasks import (
|
|
delete_history_background,
|
|
delete_customer_background,
|
|
delete_car_background
|
|
)
|
|
|
|
# 客户相关任务
|
|
from app.tasks.customer_tasks import modify_customer_info_background
|
|
|
|
__all__ = [
|
|
# 通用功能
|
|
'update_jiandaoyun',
|
|
'approve_workflow',
|
|
# 品牌任务
|
|
'create_brand_background',
|
|
# 删除任务
|
|
'delete_history_background',
|
|
'delete_customer_background',
|
|
'delete_car_background',
|
|
# 客户任务
|
|
'modify_customer_info_background',
|
|
]
|
|
|