This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# P2P Network Communication - Server Module
"""
服务器端模块,部署在OpenEuler系统上
负责用户管理、消息中转和离线消息缓存
__version__ = "0.1.0"
from server.relay_server import (
RelayServer,
ClientConnection,
ServerError,
ConnectionError,
UserRegistrationError,
)