918bbed0fc
- 修复 deps.py 中 get_vn_service 的引用错误 (vn_service.vn_service -> vn_service) - 移除登录页面上的明文密码提示 - 改进前端错误处理,避免数据加载失败导致登录显示错误
9 lines
217 B
Python
9 lines
217 B
Python
"""
|
|
WebSocket 模块
|
|
"""
|
|
from .manager import ConnectionManager, manager
|
|
from .routes import router
|
|
from .events import EventMonitorManager
|
|
|
|
__all__ = ["ConnectionManager", "manager", "router", "EventMonitorManager"]
|