Files
w 409e488d3e 功能(后端): 添加认证、配置、调度、消息队列等模块
- 零配置安全认证(本地免密、远程自动保护)
- 配置加载与加密存储
- Cron 精确按需唤醒调度器
- 企业级消息队列(优先级、去重、死信)
- LLM 提供商统一接口(LiteLLM)
- 会话管理与系统托盘
2026-02-21 09:49:09 +08:00

6 lines
181 B
Python

"""System integration module."""
from backend.modules.system.tray import SystemTray, HotkeyManager, AutoStartManager
__all__ = ["SystemTray", "HotkeyManager", "AutoStartManager"]