25 lines
644 B
Python
25 lines
644 B
Python
"""
|
|
后台任务模块 - 向后兼容入口
|
|
此文件保持向后兼容,实际功能已拆分到 app.tasks 模块中
|
|
"""
|
|
# 从新的 tasks 模块导入所有函数,保持向后兼容
|
|
from app.tasks import (
|
|
update_jiandaoyun,
|
|
approve_workflow,
|
|
create_brand_background,
|
|
delete_history_background,
|
|
delete_customer_background,
|
|
delete_car_background,
|
|
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',
|
|
]
|