Files
Aether/_deprecated_py_src/services/health/__init__.py

15 lines
290 B
Python
Raw Normal View History

2025-12-10 20:52:44 +08:00
"""
健康监控服务模块
包含健康监控相关功能
- HealthMonitor: 健康监控类
- get_health_monitor: 健康度监控单例获取函数懒加载
2025-12-10 20:52:44 +08:00
"""
from .monitor import HealthMonitor, get_health_monitor
2025-12-10 20:52:44 +08:00
__all__ = [
"HealthMonitor",
"get_health_monitor",
2025-12-10 20:52:44 +08:00
]