Files
ai-agent-admin/backend-fastapi/core/websocket/__init__.py
T
2026-06-08 18:14:59 +08:00

10 lines
179 B
Python

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
WebSocket 模块
提供 WebSocket 连接和消息处理功能
"""
from core.websocket.router import router
__all__ = ['router']