b2c20ec43d
- 新增微信告警服务(wechat_service)和告警任务(alert_tasks) - 新增 WebSocket 实时推送端点 - 新增监控管理模块(monitor) - 增强统计仪表板:趋势图、区域分布、光功率历史 - 设备管理:添加坐标信息、标签系统、复合索引优化 - 前端:重构Dashboard/Charts页面,新增业务组件 - 新增5个数据库迁移(坐标、复合索引、标签、光功率历史、显示名) - 更新部署配置和脚本 - 新增测试框架基础结构
8 lines
321 B
Python
8 lines
321 B
Python
"""Celery Worker 入口模块"""
|
|
from app.core.celery_app import celery_app
|
|
from app.tasks import check_tasks # noqa: F401 - 导入以注册任务
|
|
from app.tasks import audit_tasks # noqa: F401 - 导入以注册任务
|
|
from app.tasks import alert_tasks # noqa: F401 - 导入以注册任务
|
|
|
|
__all__ = ['celery_app']
|